-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "react-hamburgers",
"version": "1.0.0",
"description": "React component for Jonathan Suh's hamburguers",
"main": "dist/hamburger.js",
"scripts": {
"test": "./node_modules/.bin/eslint --ext .js --ext .jsx .",
"dist": "./node_modules/.bin/gulp dist",
"dev": "./node_modules/.bin/gulp dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oscarferrandiz/react-hamburgers.git"
},
"keywords": [
"react",
"hamburguers"
],
"author": "Óscar Ferrándiz",
"license": "ISC",
"bugs": {
"url": "https://github.com/oscarferrandiz/react-hamburgers/issues"
},
"homepage": "https://github.com/oscarferrandiz/react-hamburgers#readme",
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react": "^15.5.4"
},
"devDependencies": {
"babel-preset-env": "^1.4.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-3": "^6.22.0",
"del": "^2.2.2",
"eslint": "^3.15.0",
"eslint-config-vizzuality": "^1.0.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2"
},
"peerDependencies": {
"hamburgers": "^0.8.1"
}
}