forked from negomi/react-burger-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 KB
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
{
"name": "react-burger-menu",
"version": "1.5.7",
"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/negomi/react-burger-menu",
"repository": {
"type": "git",
"url": "https://github.com/negomi/react-burger-menu.git"
},
"bugs": {
"url": "https://github.com/negomi/react-burger-menu/issues"
},
"dependencies": {
"browserify-optional": "^1.0.0",
"classnames": "^2.1.1",
"imports-loader": "^0.6.4",
"radium": "^0.16.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"snapsvg": "^0.4.0"
},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.2.0",
"eslint": "^2.1.0",
"eslint-plugin-react": "^4.2.0",
"gulp": "^3.8.11",
"gulp-mocha": "^2.2.0",
"jsdom": "^8.0.2",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.0",
"react-component-gulp-tasks": "^0.7.1",
"sinon": "^1.16.1"
},
"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",
"release": "gulp release",
"start": "gulp dev",
"test": "gulp test --reporter dot",
"tdd": "gulp watch:tests --reporter spec",
"watch": "gulp watch:lib"
},
"readmeFilename": "README.md",
"keywords": [
"react",
"react-component"
],
"license": "MIT"
}