-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "sass-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for Sass projects",
"scripts": {
"test": "npm run build",
"clean": "rm -f build/css/*",
"autoprefixer": "postcss -u autoprefixer -r build/css/*",
"sass": "node-sass --output-style compressed -o build/css src/sass",
"sassdoc": "sassdoc src/sass -d docs",
"serve": "browser-sync start --server --files build/css/*.css",
"build": "npm run sass && npm run autoprefixer && npm run sassdoc",
"watch": "onchange 'src/sass/*.scss' -- npm run build",
"postinstall": "echo To start serving sass run 'npm watch'"
},
"repository": {
"type": "git",
"url": "github.com/chriswburke/sass-boilerplate"
},
"keywords": [
"sass",
"scss",
"styles",
"css",
"boilerplate"
],
"author": "Chris W. Burke",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.3",
"browser-sync": "^2.11.1",
"node-sass": "^3.4.2",
"onchange": "^2.0.0",
"postcss-cli": "^2.5.1",
"sass-lint": "^1.5.0",
"sassdoc": "^2.1.20"
}
}