-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
{
"name": "gulp-skin",
"version": "0.1.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp build --env=production",
"dev": "gulp --env=development",
"commit": "git add . && git-cz",
"push": "npm-run-all commit release",
"release": "standard-version && git push"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"author": "cgj",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"maxHeaderWidth": 100,
"maxLineWidth": 100,
"defaultType": "",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssues": ""
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"browser-sync": "^2.26.7",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"del": "^5.1.0",
"fs": "0.0.1-security",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-filter": "^6.0.0",
"gulp-header": "^2.0.9",
"gulp-if": "^3.0.0",
"gulp-inject": "^5.0.4",
"gulp-livereload": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-webserver": "^0.9.1",
"husky": "^3.1.0",
"minimist": "^1.2.0",
"npm-run-all": "^4.1.5",
"standard-version": "^7.0.1",
"vinyl": "^2.2.0",
"vinyl-paths": "^3.0.1",
"yargs": "^15.0.2"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}