-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.72 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
71
72
73
74
75
76
{
"name": "gulp-builder",
"version": "1.0.0",
"description": "Basic to start a new markup project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.pcss": "stylelint"
},
"repository": "git+https://github.com/AleshaOleg/gulp-builder.git",
"author": "Oleh Aloshkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/AleshaOleg/gulp-builder/issues"
},
"homepage": "https://github.com/AleshaOleg/gulp-builder#readme",
"dependencies": {
"global": "^4.3.2",
"gulp": "^3.9.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"chrome": "60"
}
}
]
]
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"browser": true,
"es6": true
}
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.18.12",
"del": "^2.2.2",
"gulp-babel": "^6.1.2",
"gulp-cache-bust": "^1.1.0",
"gulp-cached": "^1.1.1",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.2",
"gulp-debug": "^3.1.0",
"gulp-eslint": "^3.0.1",
"gulp-font2css": "^0.1.2",
"gulp-imagemin": "^3.2.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.0",
"gulp-pug": "^3.3.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"portfinder": "^1.0.13",
"postcss-color-function": "^4.0.0",
"postcss-cssnext": "^2.11.0",
"precss": "^1.4.0",
"stylelint-config-standard": "^17.0.0"
}
}