-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "react-treeview",
"version": "0.4.7",
"description": "Easy, light, flexible tree view made with React.",
"main": "lib/react-treeview.js",
"directories": {
"demos": "demos"
},
"scripts": {
"start": "NODE_ENV=development node server.js",
"lint": "eslint src demos",
"build-demos": "NODE_ENV=production webpack -p",
"prerelease": "babel src --out-dir lib && NODE_ENV=production webpack --config webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/chenglou/react-treeview.git"
},
"keywords": [
"facebook",
"react",
"treeview",
"tree-view",
"tree",
"view",
"treenode",
"tree-node",
"ui",
"react-component"
],
"author": "chenglou <chenglou92@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenglou/react-treeview/issues"
},
"homepage": "https://github.com/chenglou/react-treeview",
"peerDependencies": {
"react": ">=0.14.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.1",
"eslint-plugin-react": "^3.5.1",
"prop-types": "^15.5.10",
"react": ">=15.0.0",
"react-dom": ">=15.0.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}