-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "@viivue/atomic-css",
"version": "1.2.3",
"description": "⚛️ Customizable Atomic CSS Framework.",
"main": "./dist/atomic.min.css",
"scripts": {
"sass": "sass scss:css --no-source-map",
"sass:watch": "sass scss:css -w --no-source-map",
"sass:compressed": "sass scss/_build.scss:dist/atomic.css --no-source-map",
"optimize": "csso dist/atomic.css --output dist/atomic.min.css --stat",
"dev": "npm run sass:watch && npm run sass:compressed",
"prod": "npm run sass && npm run sass:compressed && npm run optimize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viivue/atomic-css.git"
},
"keywords": [
"atomic-css",
"customizable-atomic-css",
"viivue"
],
"author": {
"name": "phucbm",
"url": "https://github.com/phucbm"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/viivue/atomic-css/issues"
},
"homepage": "https://github.com/viivue/atomic-css",
"devDependencies": {
"csso-cli": "^3.0.0",
"sass": "^1.51.0"
}
}