-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 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
{
"name": "gundam.css",
"version": "1.0.3",
"description": "pure and lightweight css framework",
"main": "index.js",
"scripts": {
"build-all": "npm run build-normal && npm run build-minify",
"build-normal": "node-sass --source-map true --output-style expanded --include-path scss --include-path node_modules/normalize.css scss/gundam.scss css/gundam.css",
"build-minify": "node-sass --source-map true --output-style compressed --include-path scss --include-path node_modules/normalize.css scss/gundam.scss css/gundam.min.css",
"watch": "nodemon -w scss -e scss -x \"npm run build-all\"",
"lint": "sass-lint -c ./sass-lint.yml -v -q"
},
"repository": {
"type": "git",
"url": "git+https://github.com/genexu/gundam.git"
},
"author": "Gene Xu",
"license": "MIT",
"bugs": {
"url": "https://github.com/genexu/gundam/issues"
},
"homepage": "https://github.com/genexu/gundam#readme",
"devDependencies": {
"node-sass": "^4.7.2",
"nodemon": "^1.14.3",
"normalize.css": "^8.0.0",
"sass-lint": "^1.12.1"
}
}