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
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "react-burger-menu",
"version": "1.1.3",
"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": {
"classnames": "^2.1.1",
"react": "^0.13.3",
"react-kit": "^0.1.3",
"snapsvg": "^0.4.0"
},
"devDependencies": {
"babel": "^5.8.20",
"babel-eslint": "^3.1.9",
"browserify-optional": "^1.0.0",
"chai": "^3.2.0",
"eslint": "^0.21.2",
"eslint-plugin-react": "^2.3.0",
"gulp": "^3.8.11",
"imports-loader": "^0.6.4",
"istanbul": "^0.3.17",
"jsdom": "^5.6.1",
"mocha": "^2.2.5",
"react-component-gulp-tasks": "^0.7.0",
"sinon": "^1.16.1"
},
"browserify": {
"transform": ["browserify-optional"]
},
"browserify-shim": {
"react": "global:React"
},
"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": "mocha --reporter dot",
"tdd": "mocha --watch",
"coverage": "./node_modules/istanbul/lib/cli.js cover _mocha -- --ui bdd -R spec -t 5000",
"watch": "gulp watch:lib"
},
"readmeFilename": "README.md",
"keywords": [
"react",
"react-component"
],
"license": "MIT"
}