forked from refactco/HTML-Starter-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.69 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
{
"name": "html-starter-kit",
"version": "2.0.0",
"homepage": "https://markitdone.com/",
"repository": {
"type": "git",
"url": "https://github.com/MarkItDone/HTML-Starter-Kit.git"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"browser-sync": "^2.26.7",
"del": "^5.1.0",
"eslint-config-google": "^0.14.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-cache": "^1.1.3",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-eslint": "^6.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^2.0.3",
"gulp-match": "^1.1.0",
"gulp-newer": "^1.4.0",
"gulp-run-command": "^0.0.9",
"gulp-sass": "^5.1.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^3.1.0",
"gulp-zip": "^5.0.1",
"run-sequence": "^1.0.1",
"sass": "^1.52.1",
"sass-mq": "^5.0.0",
"surge": "^0.21.3",
"yargs": "^15.3.1"
},
"engines": {
"node": ">=0.12"
},
"private": true,
"scripts": {
"start": "gulp serve",
"demo": "gulp servedist --build demo",
"build:demo": "gulp --build demo",
"release": "gulp release",
"surge": "npm run build:demo && surge -p dist -d anoruzi-refact.surge.sh",
"audit": "gulp pagespeed",
"test": "gulp && git status | grep 'working directory clean' >/dev/null || (echo 'Please commit all changes generated by building'; exit 1)"
},
"eslintConfig": {
"extends": "google"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}