-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 KB
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": "kernel.css",
"version": "2.0.0-beta.1",
"description": "The CSS library built for any kind of task",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "sass scss/main.scss build/kernel.css && postcss build/kernel.css -o build/kernel.css && npm run minify",
"watch": "sass --watch scss/main.scss build/kernel.css",
"serve": "serve",
"lint": "stylelint scss",
"minify": "postcss -u cssnano --no-map build/kernel.css -o build/kernel.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christian-dale/kernel.css.git"
},
"keywords": [
"CSS",
"library",
"simple"
],
"author": "Jim Christian",
"license": "MIT",
"bugs": {
"url": "https://github.com/christian-dale/kernel.css/issues"
},
"homepage": "https://github.com/christian-dale/kernel.css#readme",
"devDependencies": {
"cssnano": "^7.0.7",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-prefix-selector": "^2.1.1",
"sass": "^1.89.2",
"serve": "^14.2.6",
"stylelint": "^16.21.1",
"stylelint-config-standard-scss": "^15.0.1"
}
}