-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "style-guider-demo",
"version": "0.1.0",
"description": "CSS and JS Style Guide and framework build with style-guider",
"keywords": [
"style",
"style-guide",
"css",
"framework",
"foundation",
"scss"
],
"main": "gulpfile.js",
"devDependencies": {
"gulp-pug-linter": "^0.5.1",
"gulp-sass-lint": "^1.3.2",
"gulp-standard": "^12.0.0",
"gulp-webserver": "^0.9.1",
"husky": "^0.14.0",
"pug-lint": "^2.3.0",
"sass-lint": "^1.10.2",
"standard": "^11.0.0"
},
"dependencies": {
"foundation-sites": "^6.3.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-load-plugins": "^1.1.0",
"gulp-pug": "^4.0.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.0",
"gulp-sass-error": "^1.0.4",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"pug": "^2.0.0-beta6"
},
"scripts": {
"build": "gulp build",
"lint": "gulp lint",
"precommit": "npm test && gulp dist && git add dist && git add docs && git add index.html",
"prepush": "npm test",
"postmerge": "npm install && npm run build",
"test": "npm run lint && npm run build",
"start": "gulp"
},
"standard": {
"globals": [
"hljs"
],
"env": {
"jquery": true,
"browser": true
}
}
}