-
Notifications
You must be signed in to change notification settings - Fork 333
/
package.json
26 lines (26 loc) · 851 Bytes
/
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
{
"name": "css-reference",
"version": "1.0.0",
"description": "A visual guide to the most popular CSS properties.",
"main": "css/website.sass",
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix",
"build-autoprefix": "postcss --use autoprefixer --output css/website.css css/website.css",
"build-clean": "rm css/website.css",
"build-sass": "node-sass --output-style compressed css/website.sass css/website.css",
"develop": "node-sass css/website.sass css/website.css",
"start": "npm run develop -- --watch"
},
"keywords": [
"css",
"sass",
"jekyll"
],
"author": "Jeremy Thomas <bbxdesign@gmail.com> (https://jgthms.com)",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.5.3",
"node-sass": "^3.11.3",
"postcss-cli": "^2.6.0"
}
}