forked from alexkuz/react-json-tree
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.4 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-json-tree",
"version": "0.10.3",
"description": "React JSON Viewer Component, Extracted from redux-devtools",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint --max-warnings=0 src test examples",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build",
"start": "cd examples && npm start"
},
"repository": {
"type": "git",
"url": "https://github.com/chibicode/react-json-tree.git"
},
"keywords": [
"react",
"json viewer"
],
"author": "Shu Uesugi <[email protected]> (http://github.com/chibicode)",
"contributors": [
"Dave Vedder <[email protected]> (http://www.eskimospy.com/)",
"Daniele Zannotti <[email protected]> (http://www.github.com/dzannotti)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/chibicode/react-json-tree/issues"
},
"homepage": "https://github.com/chibicode/react-json-tree",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.8",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1",
"expect": "^1.18.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"pre-commit": "^1.1.3",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"react": ">= ^15.0.0"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.7.5",
"babel-runtime": "^6.6.1",
"react-base16-styling": "^0.4.1",
"react-pure-render": "^1.0.2"
},
"pre-commit": "lint"
}