forked from cameronbourke/react-hamburger-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "react-hamburger-menu",
"version": "1.0.0",
"description": "Dead simple Hamburger Menu to use as a mobile nav, with a bunch of styling options.",
"main": "dist/index.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": "webpack",
"compile": "mkdir -p dist && babel ./src/hamburger-menu.jsx --out-file ./dist/index.js",
"prepublish": "npm run compile",
"test": "tape -r babel-register ./src/**/*.spec.js | tap-spec"
},
"author": "Cameron Bourke <[email protected]> (http://cameronbourke.com/)",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "6.3.17",
"babel-core": "6.3.26",
"babel-loader": "6.2.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"expect": "1.13.4",
"react-addons-test-utils": "0.14.3 || ^15.0.0",
"react": "0.14.5 || ^15.0.0",
"react-dom": "0.14.5 || ^15.0.0",
"tap-spec": "4.1.1",
"tape": "4.4.0",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"peerDependencies": {
"react": "0.14.5 || ^15.0.0"
}
}