forked from Hellenic/react-hexgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"name": "react-hexgrid",
"description": "Interactive hexagon grids with React bindings",
"version": "1.1.1",
"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",
"snapshot": "jest --updateSnapshot"
},
"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": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^20.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"dependencies": {
"classnames": "^2.2.5"
},
"files": [
"lib/",
"dist/"
],
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setupTests.js"
}
}