forked from mac-s-g/react-json-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (96 loc) · 2.78 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-json-view",
"description": "Interactive react component for displaying javascript arrays and JSON objects.",
"version": "1.8.3",
"main": "dist/main.js",
"files": [
"dist/"
],
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"clipboard": "^1.6.1",
"coveralls": "^2.13.1",
"enzyme": "^2.8.2",
"flux": "^3.1.2",
"html-webpack-plugin": "2.28.0",
"ignore-styles": "^5.0.1",
"istanbul": "^0.4.5",
"jsdom": "^10.1.0",
"mocha": "^3.2.0",
"nyc": "^10.3.2",
"radium":"^0.19.1",
"react": "^15.5.4",
"react-base16-styling": "^0.5.3",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.6",
"react-icons": "2.2.5",
"react-test-renderer": "^15.5.4",
"react-tooltip": "^3.2.10",
"sinon": "^2.2.0",
"webpack": "^2.2.1",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {},
"scripts": {
"build": "webpack -p --display-error-details --progress",
"dev:hot": "webpack-dev-server",
"modules:debug": "./docker/debug.sh",
"modules:tree": "webpack --json",
"modules:size-analyzer": "webpack --json | webpack-bundle-size-analyzer",
"start": "node server.js",
"test": "./docker/coverage.sh",
"test:coverage": "nyc report --reporter=text-lcov | coveralls",
"test:unit": "nyc --reporter=html --reporter=text-lcov --reporter=text mocha /react/test/**/*-test.js",
"test:watch": "nyc --reporter=html --reporter=text-lcov --reporter=text mocha -w /react/test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mac-s-g/react-json-view.git"
},
"keywords": [
"array-viewer",
"component",
"interactive",
"interactive-json",
"json",
"json-component",
"json-display",
"json-tree",
"json-view",
"json-viewer",
"pretty",
"pretty-print",
"print",
"print-json",
"react",
"react-component",
"react-json",
"responsive",
"responsive-json",
"view",
"viewer"
],
"license": "MIT",
"author": "Mac Gainor",
"bugs": {
"url": "https://github.com/mac-s-g/react-json-view/issues"
},
"homepage": "https://github.com/mac-s-g/react-json-view",
"directories": {
"docs": "docs",
"test": "test"
}
}