-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
41
42
43
44
45
46
47
{
"name": "Inspector-JSON",
"version": "0.1.0",
"description": "Easily visualize and explore JSON",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/SparkartGroupInc/Inspector-JSON.git"
},
"keywords": [
"JSON",
"inspector"
],
"author": {
"name": "Timothy Kempf",
"email": "tim@sparkart.com",
"url": "http://sparkart.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SparkartGroupInc/Inspector-JSON/issues"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-browserify": "~1.2.4",
"tape": "~1.1.1",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-jshint": "~0.7.0",
"grunt-contrib-uglify": "~0.2.4"
},
"dependencies": {
"type-of": "~2.0.0",
"extend": "~1.2.1",
"dom-delegate": "~0.3.2",
"store": "~1.3.14"
},
"testling": {
"files": "test/index.js",
"browsers": [
"ie/6..latest",
"ff/20..latest",
"chrome/25..latest",
"safari/4.0..latest",
"opera/11.0..latest"
]
}
}