forked from franciscop/picnic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
38
39
40
41
42
43
{
"name": "picnic",
"version": "6.5.1",
"description": "A lighweight CSS library with nice defaults and many plugins to kickstart your projects",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "npm run build-css && npm run build-prod && npm run build-web",
"build-css": "node-sass ./src/picnic.scss > picnic.css",
"build-prod": "node-sass --output-style compressed ./src/picnic.scss > picnic.min.css",
"build-web": "node-sass --output-style compressed ./web/style/style.scss > ./web/style/style.min.css"
},
"main": "picnic.min.css",
"repository": {
"type": "git",
"url": "https://github.com/picnicss/picnic.git"
},
"keywords": [
"css",
"semantic",
"html5",
"framework"
],
"author": "Francisco Presencia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/picnicss/picnic/issues"
},
"homepage": "https://www.picnicss.com/",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-banner": "^0.6.0",
"grunt-bytesize": "^0.2.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jade": "^0.15.0",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
"marked": "^0.3.5",
"node-sass": "^4.12.0"
}
}