-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "react-hamburger-button",
"version": "0.0.2",
"description": "Simple hamburger button",
"license": "MIT",
"keywords": [
"react",
"menu",
"hamburger",
"ui-component",
"navigation",
"button"
],
"author": "Daniel Król",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config examples/webpack.config.js --open",
"compile": "tsc -d",
"compile:examples": "webpack --config examples/webpack.config.js",
"prepublishOnly": "npm run compile",
"lint": "tslint 'src/**' 'examples/src/**'"
},
"devDependencies": {
"@types/react": "^15.0.0",
"@types/react-dom": "^0.14.14",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^1.3.1",
"ts-loader": "^1.0.0",
"tslint": "^4.0.2",
"tslint-loader": "^3.3.0",
"tslint-react": "^2.0.0",
"typescript": "^2.0.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"peerDependencies": {
"react": "^15.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mleko/react-hamburger-button.git"
}
}