This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "react-hamburger-menu",
"version": "1.2.1",
"description": "Dead simple Hamburger Menu to use as a mobile nav, with a bunch of styling options.",
"main": "dist/HamburgerMenu.js",
"keywords": [
"react",
"react-component",
"menu",
"hamburger",
"ui-component",
"navigation"
],
"repository": {
"type": "git",
"url": "https://github.com/cameronbourke/react-hamburger-menu.git"
},
"scripts": {
"start": "webpack-dev-server --content-base example/",
"build:compile": "babel src --out-dir dist",
"build:umd": "webpack",
"build:example": "webpack --config ./example/webpack.config.js --progress --colors",
"build:all": "yarn run build:compile && yarn run build:umd && yarn run build:example"
},
"author": "Cameron Bourke <[email protected]> (http://cameronbourke.com/)",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"babel-loader": "8.0.0-beta.0",
"babel-register": "^6.26.0",
"expect": "1.13.4",
"np": "6.2.0",
"prop-types": "15.5.7",
"react": "15.3.0",
"react-dom": "15.3.0",
"tap-spec": "4.1.1",
"tape": "4.4.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"peerDependencies": {
"prop-types": ">=15.5.7",
"react": ">=15.3.0"
}
}