-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "react-axiom",
"version": "0.5.2",
"description": "React Axiom is a way to use models with React.",
"repository": "https://github.com/wgoto/react-axiom",
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "BABEL_ENV=cjs babel src --out-dir lib --copy-files",
"codecov": "codecov",
"test": "jest"
},
"author": "Will Goto <[email protected]>",
"license": "ISC",
"dependencies": {
"hoist-non-react-statics": "^3.3.1",
"lodash": "^4.17.15"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"codecov": "^3.6.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"jest": "^23.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"roots": [
"tests"
],
"verbose": false
}
}