-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.03 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
{
"name": "Pre-Style-Site",
"private": true,
"version": "0.0.0",
"scripts": {
"style": "'../../bin/prestyle' html -d '../../tmp' -o '../src/www/css/_prestyle.scss' -p 'css/_vars.scss' -q 'double'",
"sass": "node-sass css --output '../../docs' --output-style compressed",
"autoprefixer": "postcss -o '../../docs/s.css' '../../docs/s.css' -u autoprefixer",
"html": "html-minifier --input-dir '../../tmp/html' --output-dir '../../docs' --collapse-boolean-attributes --collapse-whitespace",
"clean": "rimraf ../../tmp",
"build": "npm run style && npm run sass && npm run autoprefixer && npm run html && npm run clean",
"server": "browser-sync start --config 'bs-config.js'",
"prestart": "npm run build",
"start": "npm run server"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"ie 11"
],
"devDependencies": {
"autoprefixer": "9.6.1",
"browser-sync": "^2.26.7",
"html-minifier": "4.0.0",
"node-sass": "4.12.0",
"postcss-cli": "6.1.3",
"rimraf": "2.6.3"
}
}