-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "specificity-graph",
"description": "Generate an interactive Specificity Graph for your CSS.",
"version": "0.1.7",
"homepage": "https://github.com/pocketjoso/specificity-graph",
"author": {
"name": "Jonas Ohlsson",
"email": "[email protected]",
"url": "http://jonassebastianohlsson.com"
},
"repository": {
"type": "git",
"url": "git://github.com/pocketjoso/specificity-graph.git#master"
},
"bugs": {
"url": "https://github.com/pocketjoso/specificity-graph/issues"
},
"license": "MIT",
"main": "./lib/index.js",
"bin": {
"specificity-graph": "./bin/specificity-graph"
},
"keywords": [
"CSS",
"css",
"specificity",
"graph"
],
"dependencies": {
"cli-color": "^0.3.2",
"commander": "^2.5.0",
"css-parse": "^2.0.0",
"cssbeautify": "^0.3.1",
"d3": "^3.4.13",
"es6-promise": "^3.1.2",
"mkdirp": "^0.5.0",
"opn": "^1.0.1",
"specificity": "^0.1.4"
},
"devDependencies": {
"browserify": "^6.2.0",
"chai": "^2.1.0",
"derequire": "^1.2.0",
"mocha": "^2.1.0",
"rimraf": "^2.2.8"
},
"scripts": {
"test": "node_modules/.bin/mocha test",
"build_standalone": "browserify ./lib/core.js --standalone specificityGraph | derequire -f define -t _defi_ | derequire -f require -t _dereq_ > specificity-graph-standalone.js"
}
}