-
Notifications
You must be signed in to change notification settings - Fork 586
/
package.json
109 lines (109 loc) · 3.08 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-burger-menu",
"version": "3.0.9",
"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.2.6",
"eve": "~0.5.1",
"prop-types": "^15.7.2",
"snapsvg-cjs": "0.0.6"
},
"devDependencies": {
"acorn": "^6.3.0",
"ajv": "5.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^4.2.0",
"cross-env": "^5.2.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gulp": "^3.9.0",
"gulp-git": "^2.9.0",
"jsdom": "^16.5.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"react": "^17.0.1",
"react-component-gulp-tasks": "github:negomi/react-component-gulp-tasks",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"request": "^2.88.0",
"sinon": "^4.5.0"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"browserify": {
"transform": [
"browserify-optional"
]
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM",
"snapsvg": "global:Snap"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"prettier": "prettier \"src/**/*.js\" --single-quote --no-config --ignore-path ./.prettierignore --write",
"publish:site": "gulp publish:examples",
"publish:version": "gulp commit:version && gulp push",
"start": "gulp dev",
"test": "cross-env NODE_ENV=test mocha --require babel-register --require jsdom-global/register --reporter list",
"test:watch": "npm test -- --watch --reporter min",
"coverage": "nyc npm test && nyc report --reporter=lcov",
"release": "npm run build && gulp bump && gulp release && npm run publish:version",
"release:minor": "npm run build && gulp bump:minor && gulp release && npm run publish:version",
"release:major": "npm run build && gulp bump:major && gulp release && npm run publish:version"
},
"pre-commit": [
"prettier"
],
"engines": {
"node": ">=4.0.0"
},
"readmeFilename": "README.md",
"keywords": [
"component",
"hamburger",
"menu",
"react",
"react-component"
],
"license": "MIT",
"files": [
"lib",
"dist"
],
"nyc": {
"include": [
"**/src/**/*.js"
],
"exclude": [
"**/src/snapsvgImporter.js"
],
"sourceMap": false,
"instrument": false
}
}