forked from Lapple/react-json-inspector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 813 Bytes
/
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
{
"name": "react-json-inspector-demisto",
"version": "1.0.1",
"description": "React JSON inspector component",
"main": "json-inspector.js",
"author": {
"name": "Demisto"
},
"repository": {
"type": "git",
"url": "git://github.com/aviadl/react-json-inspector.git"
},
"license": "MIT",
"dependencies": {
"debounce": "1.0.0",
"md5-o-matic": "^0.1.1",
"object-assign": "2.0.0"
},
"devDependencies": {
"browserify": "^6.1.0",
"http-server": "^0.7.2",
"watchify": "^2.0.0"
},
"peerDependencies": {
"react": "^16.1.1",
"prop-types": "^15.6.0",
"create-react-class": "^15.6.2"
},
"keywords": [
"react-component"
],
"scripts": {
"server": "http-server .",
"watch": "watchify example/app.js -o example/app.compiled.js -v"
}
}