-
-
Notifications
You must be signed in to change notification settings - Fork 223
/
package.json
52 lines (52 loc) · 1.68 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
49
50
51
52
{
"name": "picnic",
"version": "7.1.0",
"description": "A lighweight CSS library with nice defaults and many plugins to kickstart your projects",
"author": "Francisco Presencia <[email protected]> (https://francisco.io/)",
"funding": {
"url": "https://www.paypal.me/franciscopresencia/19"
},
"main": "picnic.min.css",
"license": "MIT",
"scripts": {
"build": "grunt && npm run build-css && npm run build-prod && npm run build-web",
"build-css": "sass ./src/picnic.scss > picnic.css",
"build-prod": "sass --style compressed ./src/picnic.scss > picnic.min.css",
"build-web": "sass --style compressed ./web/style/style.scss > ./web/style.min.css"
},
"homepage": "https://www.picnicss.com/",
"documentation": {
"name": "Picnic CSS",
"title": "Picnic CSS - A lighweight CSS library with nice defaults and many plugins to kickstart your projects",
"landing": "web/index.html",
"menu": {
"Donate": "https://paypal.me/franciscopresencia/19",
"Github": "https://github.com/franciscop/picnic",
"Documentation": "https://picnicss.com/documentation"
},
"pages": ["src/readme.md", "src/plugins"]
},
"repository": "https://github.com/franciscop/picnic.git",
"keywords": [
"css",
"semantic",
"html5",
"framework"
],
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-banner": "^0.6.0",
"grunt-bytesize": "^0.2.0",
"grunt-cli": "^1.3.2",
"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",
"sass": "^1.49.0"
}
}