-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "use-reducer-with-side-effects",
"version": "2.2.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "FORCE_COLOR=t tape -r @babel/register -r @babel/polyfill ./test/*.js | tap-diff",
"cover": "nyc --reporter=lcov --reporter=text npm test",
"build": "babel src -d lib",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"hooks",
"reducer",
"state",
"side",
"effects",
"reason"
],
"repository": {
"type": "git",
"url": "https://github.com/conorhastings/use-reducer-with-side-effects.git"
},
"author": "Conor Hastings",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.6.0",
"@babel/polyfill": "latest",
"@babel/preset-env": "^7.4.5",
"@babel/register": "latest",
"@testing-library/react-hooks": "^3.2.1",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"react": "^16.9.0",
"react-test-renderer": "^16.9.0",
"tap-diff": "^0.1.1",
"tape": "^4.11.0"
},
"peerDependencies": {
"react": "^16.8.0"
}
}