-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
59 lines (59 loc) · 1.75 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
{
"name": "react-hexagon",
"version": "1.1.3",
"description": "React component that renders a hexagon using SVG",
"main": "lib/Hexagon.js",
"umd": "umd/Hexagon.js",
"scripts": {
"build": "npm run clean && npm run build:babel && npm run build:webpack",
"build:babel": "babel -d lib/ src/",
"build:demo": "cross-env NODE_ENV=production webpack -p --config webpack.config.demo.js",
"build:webpack": "cross-env NODE_ENV=production webpack -p --config webpack.config.prod.js",
"clean": "rimraf lib && rimraf umd",
"test": "eslint .",
"postpublish": "npm run clean",
"prepublishOnly": "npm run build",
"start": "node demo/devServer.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rexxars/react-hexagon.git"
},
"keywords": [
"react",
"react-component",
"hexagon",
"svg"
],
"author": "Espen Hovlandsdal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexxars/react-hexagon/issues"
},
"homepage": "https://github.com/rexxars/react-hexagon#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^5.0.5",
"eslint": "^4.9.0",
"eslint-config-bengler": "^4.1.0",
"eslint-plugin-react": "^7.4.0",
"express": "^4.13.4",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.5.2",
"webpack": "^3.7.1",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.10.0"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
}
}