forked from swiftcarrot/react-ui-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "react-file-view",
"version": "1.0.0",
"description": "React file-view component",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --port=8080",
"build": "make",
"deploy": "rm -rf .publish && npm run build && github-pages-deploy",
"pretest": "npm run build",
"prepublish": "npm test",
"test": "mocha"
},
"github-pages-deploy": {
"src": "example"
},
"repository": {
"type": "git",
"url": "https://github.com/aostrun/react-treeview"
},
"keywords": [
"react",
"react-component",
"tree",
"file-view"
],
"author": "Andrijan Ostrun",
"license": "MIT",
"bugs": {
"url": "https://github.com/aostrun/react-treeview/issues"
},
"homepage": "https://github.com/aostrun/react-treeview",
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"github-pages-deploy": "^0.0.3",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"mocha": "^3.5.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"classnames": "^2.2.5",
"js-tree": "^2.0.1",
"prop-types": "^15.5.10"
}
}