-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.16 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
{
"name": "grid-kit",
"version": "0.1.0",
"description": "CSS3 Grid Framework",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^9.4.3",
"clean-css-cli": "^4.2.1",
"node-sass": "^4.11.0",
"postcss-cli": "^6.1.0",
"rimraf": "^2.6.2"
},
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-autoprefix": "postcss --use autoprefixer --map false --output dist/grid-kit.css dist/grid-kit.css",
"build-cleancss": "cleancss -o dist/grid-kit.min.css dist/grid-kit.css",
"build-clean": "rimraf dist",
"build-sass": "node-sass --output-style expanded --source-map true ./scss/grid-kit.scss ./dist/grid-kit.css",
"deploy": "npm run build",
"start": "npm run build-sass -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codefoxes/grid-kit.git"
},
"author": {
"name": "Codefoxes",
"url": "https://github.com/codefoxes"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codefoxes/grid-kit/issues"
},
"homepage": "https://github.com/codefoxes/grid-kit#readme"
}