forked from wmira/react-sidenav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
61
62
63
{
"name": "react-sidenav",
"version": "2.1.1",
"description": "A Simple SideBar Navigation written in React",
"author": "Warren Mira",
"scripts": {
"playground": "webpack-dev-server --content-base playground ",
"dist": "cp package.json dist && cp README.md dist && babel -D -d dist/ ./src ",
"test": "jest",
"lint": "eslint src/*"
},
"repository": {
"type": "git",
"url": "https://github.com/wmira/react-sidenav"
},
"bugs": {
"url": "https://github.com/wmira/react-sidenav/issues"
},
"homepage": "https://github.com/wmira/react-sidenav",
"keywords": [
"react",
"react-component",
"side navigation",
"sidenav",
"menu",
"vertical menu",
"navigation"
],
"dependencies": {
"prop-types": "^15.5.8",
"styled-components": "*"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.2.2",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"enzyme": "^2.8.0",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^19.0.2",
"react": "^15",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15",
"react-icons-kit": "^1.0.4",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"react-test-renderer": "^15.4.2",
"styled-components": "^1.4.4",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {
"react": "^15"
},
"jest": {
"rootDir": "src"
}
}