forked from negomi/react-burger-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.39 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-burger-menu",
"version": "1.14.0",
"description": "An off-canvas sidebar component with a collection of effects and styles using CSS transitions and SVG path animations",
"main": "lib/BurgerMenu.js",
"author": "Imogen Wentworth",
"homepage": "https://github.com/matejstrasek/react-burger-menu",
"repository": {
"type": "git",
"url": "https://github.com/matejstrasek/react-burger-menu.git"
},
"bugs": {
"url": "https://github.com/matejstrasek/react-burger-menu/issues"
},
"dependencies": {
"browserify-optional": "^1.0.0",
"classnames": "^2.1.1",
"eve": "~0.4.2",
"radium": "^0.18.0",
"snapsvg-cjs": "0.0.4"
},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.2.0",
"eslint": "^3.0.0",
"eslint-plugin-react": "^6.0.0",
"gulp": "^3.8.11",
"gulp-git": "^1.8.0",
"gulp-mocha": "^3.0.0",
"jsdom": "^9.0.0",
"mocha": "^3.0.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.0.0",
"react-component-gulp-tasks": "^0.7.1",
"react-dom": "^15.4.1",
"sinon": "^1.16.1"
},
"peerDependencies": {
"react": ">=0.14.0 <16.0.0",
"react-dom": ">=0.14.0 <16.0.0"
},
"browserify": {
"transform": [
"browserify-optional"
]
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM",
"radium": "global:Radium",
"snapsvg": "global:Snap"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "gulp publish:examples",
"publish:version": "gulp commit:version && gulp push",
"start": "gulp dev",
"test": "gulp test --reporter list",
"tdd": "gulp watch:tests --reporter min",
"watch": "gulp watch:lib",
"release": "npm run build && gulp bump && npm run publish:version && gulp release",
"release:minor": "npm run build && gulp bump:minor && npm run publish:version && gulp release",
"release:major": "npm run build && gulp bump:major && npm run publish:version && gulp release"
},
"engines": {
"node": ">=4.0.0"
},
"readmeFilename": "README.md",
"keywords": [
"component",
"hamburger",
"menu",
"react",
"react-component"
],
"license": "MIT"
}