forked from Hellenic/react-hexgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 998 Bytes
/
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
{
"name": "react-hexgrid",
"description": "Interactive hexagon grids with React bindings",
"version": "1.0.0",
"main": "lib/index.js",
"author": "Hellenic",
"repository": "Hellenic/react-hexgrid",
"license": "MIT",
"scripts": {
"compile": "babel src/ --out-dir lib",
"bundle": "babel src/ --out-file dist/react-hexgrid.js",
"prepublish": "npm run compile",
"test:watch": "jest --watch --coverage",
"test": "jest --coverage"
},
"peerDependencies": {
"react": "^15.0.1",
"prop-types": "^15.0.1"
},
"devDependencies": {
"babel-cli": "*",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"enzyme": "^2.8.2",
"jest": "^20.0.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4"
},
"dependencies": {
"classnames": "^2.2.5"
},
"files": [
"lib/",
"dist/"
]
}