-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "luna-css",
"version": "1.0.1",
"description": "A simple css framework for myself",
"author": "James-N-M",
"license": "MIT",
"main": "src/index.scss",
"unpkg": "css/index.css",
"keywords": [
"css",
"sass",
"flexbox",
"responsive",
"framework"
],
"scripts": {
"build": "rimraf css && npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-sass": "node-sass --output-style expanded src/index.scss ./css/index.css",
"build-autoprefix": "postcss --use autoprefixer --map --output ./css/index.css ./css/index.css",
"build-cleancss": "cleancss -o ./css/index.min.css ./css/index.css",
"build-sass-development": "node-sass --output-style expanded src/index.scss ./docs/index.css",
"start": "npm run build-sass-development -- --watch"
},
"files": [
"css",
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"autoprefixer": "^10.4.7",
"clean-css-cli": "^5.6.1",
"node-sass": "^7.0.1",
"postcss-cli": "^10.0.0",
"rimraf": "^3.0.2"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/James-N-M/luna.git"
},
"bugs": {
"url": "https://github.com/James-N-M/luna/issues"
},
"homepage": "https://github.com/James-N-M/luna#readme"
}