-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "postcss-system",
"version": "0.0.5",
"description": "Author your CSS with a BEM-compliant component-oriented system.",
"author": "Declan de Wet <[email protected]>",
"directories": {
"lib": "lib"
},
"main": "lib",
"scripts": {
"test": "./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- -R spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/declandewet/system"
},
"bugs": {
"url": "http://github.com/declandewet/system/issues",
"email": "[email protected]"
},
"dependencies": {
"lodash": "3.10.x",
"postcss": "4.1.x",
"when": "3.7.x"
},
"devDependencies": {
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.15",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2",
"postcss-nested": "^0.3.2"
},
"engine": {
"node": ">=0.10.0"
},
"license": "MIT"
}