This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
forked from alexkuz/react-json-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.68 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
72
73
74
75
76
77
78
79
80
81
{
"name": "react-json-tree",
"version": "0.12.0",
"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/src",
"test": "npm run lint && 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",
"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": [
"Alexander Kuznetsov <[email protected]> (http://kuzya.org/)",
"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.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"eslint": "^4.10",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"expect": "^21.2.1",
"husky": "^0.14.3",
"isparta": "^4.0.0",
"lint-staged": "^4.3.0",
"mocha": "^4.0.1",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"prop-types": "^15.5.8",
"react-base16-styling": "^0.5.1"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --single-quote --write",
"git add"
]
}
}