-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "systematize",
"version": "3.3.1",
"description": "systematize.scss: normalize styles across browsers. Like normalize.css, but with system fonts.",
"keywords": [
"css",
"reset",
"normalize",
"scss",
"system fonts",
"San Francisco",
"SF Mono"
],
"main": "build/systematize.css",
"style": "build/systematize.css",
"files": [
"**/*.scss",
"**/*.css"
],
"repository": "mvasilkov/systematize",
"license": "MIT",
"bugs": "https://github.com/mvasilkov/systematize/issues",
"homepage": "https://github.com/mvasilkov/systematize",
"devDependencies": {
"clean-css-cli": "^4.3.0",
"node-sass": "^4.12.0"
},
"scripts": {
"build": "npm run css && npm run min.css && npm run addons.css && npm run addons.min.css",
"css": "node-sass systematize.scss build/systematize.css",
"min.css": "cleancss -o build/systematize.min.css build/systematize.css",
"addons.css": "node-sass addons.scss build/addons.css",
"addons.min.css": "cleancss -o build/addons.min.css build/addons.css"
}
}