forked from swiftcarrot/react-ui-tree
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "react-ui-tree",
"version": "2.6.0",
"description": "React tree component",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server -c --port=8888",
"build": "make",
"deploy": "npm run build && github-pages-deploy",
"test": "mocha"
},
"github-pages-deploy": {
"src": "example"
},
"repository": {
"type": "git",
"url": "https://github.com/pqx/react-ui-tree.git"
},
"keywords": [
"react",
"react-component",
"tree"
],
"author": "Wang Zuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/pqx/react-ui-tree/issues"
},
"homepage": "https://github.com/pqx/react-ui-tree",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.26.1",
"github-pages-deploy": "^0.0.3",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"classnames": "^2.2.5",
"js-tree": "^1.1.0"
}
}