forked from chenglou/react-treeview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "react-treeview",
"version": "0.4.2",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenglou/react-treeview/issues"
},
"homepage": "https://github.com/chenglou/react-treeview",
"peerDependencies": {
"react": ">=0.12.0 || ^0.14.0-rc1"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"eslint-plugin-react": "^2.3.0",
"react-hot-loader": "^1.2.8",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
}
}