forked from storybookjs/react-inspector
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.21 KB
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-inspector",
"version": "1.1.0",
"description": "Power of Browser DevTools inspectors right inside your React app",
"main": "lib/index.js",
"scripts": {
"storybook": "start-storybook -p 9001",
"build:storybook": "build-storybook -o storybook-static",
"build": "babel src --out-dir lib && webpack --config webpack.prod.config.js",
"lint": "eslint lib",
"test": "mocha src --compilers js:babel-register --recursive",
"test:watch": "npm run test -- --watch",
"clean": "rimraf lib",
"prerelease": "npm run lint && npm run test && npm run clean && npm run build",
"release": "npm publish ."
},
"repository": {
"type": "git",
"url": "https://github.com/xyc/react-inspector.git"
},
"keywords": [
"react",
"reactjs",
"object",
"object-inspector",
"table-inspector",
"treeview",
"tableview",
"tree-view",
"table-view",
"tree",
"table",
"view",
"inspector",
"react-component",
"ui",
"devtools"
],
"author": "Xiaoyi Chen <cxychina@gmail.com> (http://github.com/xyc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xyc/react-inspector/issues"
},
"homepage": "https://github.com/xyc/react-inspector",
"devDependencies": {
"@kadira/storybook": "^1.38.0",
"babel-cli": "^6.7.5",
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0-beta.1",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-0": "^6.0.0",
"babel-register": "^6.6.0",
"babel-runtime": "^6.9.2",
"core-js": "^1.1.4",
"css-loader": "^0.23.0",
"enzyme": "^2.2.0",
"eslint": "^1.7.1",
"eslint-plugin-react": "^2.3.0",
"expect": "^1.14.0",
"jasmine-core": "^2.3.4",
"mocha": "^2.4.5",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^1.2.7",
"rebug": "0.0.3",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"dependencies": {
"is-dom": "^1.0.5"
}
}