forked from MandarinConLaBarba/react-tree-menu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "react-tree-menu",
"version": "1.5.1",
"description": "A tree menu component for React",
"main": "index.js",
"keywords": ["react", "tree", "tree menu", "menu", "react-component"],
"scripts": {
"prepare": "npm run lib",
"prepublish": "npm run lib",
"lib": "rimraf lib && babel src -d lib",
"watch": "webpack-dev-server",
"bundle": "webpack",
"test": "jest"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git://github.com/jbrodriguez/react-tree-menu"
},
"dependencies": {
"create-react-class": "^15.6.2",
"invariant": "^2.2.2",
"lodash.assign": "^4.2.0",
"lodash.clone": "^4.5.0",
"lodash.map": "^4.6.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"lodash.sortby": "^4.7.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"react-hot-loader": "^3.1.3",
"rimraf": "^2.6.2",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.9.5",
"webpack-validator": "^3.0.0"
},
"author": "Juan B. Rodriguez",
"license": "MIT"
}