forked from Lapple/react-json-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "react-json-inspector",
"version": "7.1.1",
"description": "React JSON inspector component",
"main": "json-inspector.js",
"author": {
"name": "Aziz Yuldoshev",
"email": "[email protected]",
"url": "http://lapple.me"
},
"repository": {
"type": "git",
"url": "git://github.com/Lapple/react-json-inspector.git"
},
"license": "MIT",
"dependencies": {
"create-react-class": "^15.6.0",
"debounce": "1.0.0",
"md5-o-matic": "^0.1.1",
"object-assign": "2.0.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"browserify": "^6.1.0",
"chai": "3.5.0",
"enzyme": "^2.9.1",
"http-server": "^0.7.2",
"mocha": "3.0.2",
"react": "^15.6.1",
"react-addons-test-utils": "15.0.0",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"watchify": "^2.0.0"
},
"peerDependencies": {
"react": "^15.0.0"
},
"keywords": [
"react-component"
],
"scripts": {
"test": "mocha test/**/*-spec.js",
"server": "http-server .",
"watch": "watchify example/app.js -o example/app.compiled.js -v"
}
}