This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "angular-schema-form-cloud-uploader",
"version": "0.2.0",
"description": "Cloud uploader add-on for Angular Schema Form, using Angular File Upload.",
"keywords": [
"Angular Schema Form",
"Angular File Upload",
"form",
"JSON",
"JSON Schema",
"schema",
"upload",
"file upload",
"cloud",
"cloud storage"
],
"author": "João Pedro Boavida",
"license": "MIT",
"homepage": "https://github.com/jboavida/asf-cloud-uploader",
"bugs": {
"url": "https://github.com/jboavida/asf-cloud-uploader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jboavida/asf-cloud-uploader.git"
},
"browser": "angular-schema-form-cloud-uploader.js",
"dependencies": {},
"devDependencies": {
"bower": "^1.8.2",
"eslint": "^4.7.2",
"eslint-plugin-angular": "^3.1.1",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-angular-templatecache": "^2.0.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.0.0",
"gulp-livereload": "^3.8.1",
"gulp-rename": "^1.2.2",
"gulp-server-livereload": "^1.9.2",
"gulp-uglify": "^3.0.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.4",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.4",
"streamqueue": "^1.1.1"
},
"eslintConfig": {
"env": {
"browser": true,
"jasmine": true,
"node": true
},
"extends": "plugin:angular/johnpapa",
"rules": {
"no-console": 1,
"no-unused-expressions": 2,
"no-unused-vars": 1
}
},
"scripts": {
"eslint": "eslint --ignore-path .gitignore '*/**/*.js'",
"prestart": "npm install",
"start": "gulp",
"pretest": "npm install && npm run eslint",
"test": "karma start karma.conf.js"
}
}