-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 1.14 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
{
"name": "kernel.css",
"version": "1.0.0",
"description": "The CSS framework built for any kind of task",
"stylintrc": ".stylintrc",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "stylus stylus/theme.styl -o build/kernel.css --prefix ke- --include-css",
"watch": "stylus -w stylus/theme.styl -o build/kernel.css --prefix ke- --include-css",
"lint": "stylint stylus",
"release": "npm run compile && node ./scripts/release.js && npm run minify",
"minify": "minify ./build/kernel.css > ./release/kernel.min.css && minify ./js/kernel.js > ./release/kernel.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ionogy/kernel.css.git"
},
"keywords": [
"CSS",
"framework",
"simple"
],
"author": "Jim Christian",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ionogy/kernel.css/issues"
},
"homepage": "https://github.com/Ionogy/kernel.css#readme",
"dependencies": {
"minify": "^8.0.4",
"stylint": "^2.0.0",
"stylus": "^0.56.0"
}
}