-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 2.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "picus-static-site",
"version": "1.0.0",
"author": "PICUS <[email protected]>",
"homepage": "https://github.com/picuscreative/picus-static-site",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/picuscreative/picus-static-site"
},
"bugs": {
"url": "https://github.com/picuscreative/picus-static-site/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"build": "bower install && gulp",
"lint": "eslint --fix ./assets/scripts/**/*.js && stylelint --fix ./assets/styles/**/*.scss",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"engines": {
"node": ">= 4.5"
},
"lint-staged": {
"*.js": [
"eslint --fix ./assets/scripts/**/*.js",
"git add"
],
"*.css": [
"stylelint --fix ./assets/styles/**/*.scss",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^6.1.0",
"@commitlint/config-conventional": "^6.1.0",
"asset-builder": "^1.1.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.8.2",
"del": "^2.2.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-compat": "^2.4.0",
"eslint-plugin-import": "^2.12.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^7.0.1",
"gulp-changed": "^1.3.0",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.1.0",
"gulp-flatten": "0.3.1",
"gulp-if": "^2.0.1",
"gulp-imagemin": "^3.0.3",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-rev": "^7.1.2",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^2.0.0",
"husky": "^0.14.3",
"imagemin-pngcrush": "^5.0.0",
"lazypipe": "^1.0.1",
"lint-staged": "^7.0.4",
"merge-stream": "^1.0.0",
"minimist": "^1.1.3",
"run-sequence": "^1.1.2",
"stylelint": "^9.3.0",
"stylelint-no-unsupported-browser-features": "^3.0.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.3",
"traverse": "^0.6.6",
"wiredep": "^4.0.0"
},
"browserslist": [
"Chrome >= 64",
"Firefox >= 57",
"Edge >= 15",
"Explorer >= 11",
"Safari >= 10.1",
"iOS >= 10.3",
"ChromeAndroid >= 64"
]
}