-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.26 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
36
37
{
"name": "kosli",
"version": "1.0.0",
"description": "kosli css",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"remove:assets": "rm -f scss/main.css js/main.js",
"compile-main:css": "sass --no-source-map scss/main.scss:scss/main.css --style expanded",
"prefix-main:css": "postcss scss/main.css -u autoprefixer -b \"last 10 versions\" -o scss/main.prefixed.css",
"compress-main:css": "sass --no-source-map scss/main.prefixed.css:scss/main.min.css --style compressed",
"cleanup:css": "rm scss/main.css && rm scss/main.prefixed.css",
"rename:css": "mv scss/main.min.css scss/main.css",
"bundle-js:js": "bundle-js js/all.js -o js/main.js",
"build": "npm-run-all remove:assets compile-main:css prefix-main:css compress-main:css cleanup:css rename:css bundle-js:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kosli-dev/tdd.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kosli-dev/tdd/issues"
},
"homepage": "https://github.com/kosli-dev/tdd/#readme",
"devDependencies": {
"autoprefixer": "^10.4.12",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"sass": "^1.55.0",
"bundle-js": "^1.0.3"
}
}