-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "gr8",
"version": "3.1.5",
"description": "Functional css utilities",
"main": "index.js",
"style": "dist/gr8.css",
"devDependencies": {
"colortape": "^0.1.2",
"onchange": "^6.0.0",
"standard": "^11.0.0",
"tape": "^5.0.0"
},
"scripts": {
"test": "standard --fix && node test.js | colortape",
"build-css": "node bin/dist.js",
"build-readme": "node bin/readme/index.js",
"watch-readme": "onchange 'bin/readme/' -- npm run build-readme",
"dist": "npm run test && npm run build-css && npm run build-readme"
},
"standard": {
"ignore": [
"postcss.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jongacnik/gr8.git"
},
"keywords": [
"functional",
"css",
"utilities"
],
"author": "Jon Gacnik <jon@folderstudio.com> (http://jongacnik.com)",
"license": "MIT",
"homepage": "https://github.com/jongacnik/gr8#readme",
"dependencies": {
"gr8-util": "^1.3.0",
"object-values": "^2.0.0",
"xtend": "^4.0.1"
}
}