-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.15 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
{
"name": "my-extension",
"private": true,
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"gulp": "gulp",
"package": "gulp package"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^7.0.1",
"gulp-cache": "^0.4.3",
"gulp-chrome-manifest": "0.0.13",
"gulp-clean-css": "^4.3.0",
"gulp-eslint": "^2.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^2.0.6",
"gulp-size": "^4.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^5.0.0",
"gulp-zip": "^5.1.0",
"main-bower-files": "^2.13.3",
"run-sequence": "^2.2.1",
"wiredep": "^4.0.0"
},
"eslintConfig": {
"env": {
"node": true,
"browser": true
},
"globals": {
"chrome": true
},
"rules": {
"eol-last": 0,
"quotes": [
2,
"single"
]
}
}
}