-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 927 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
{
"name": "react-use-reducers",
"version": "0.1.1",
"description": "",
"main": "dist/use-reducers.js",
"scripts": {
"checks": "npm run test && npm run type-check",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"build": "npm run build:clean && tsc",
"build:clean": "rimraf dist",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run test && npm run build",
"preversion": "npm run test && npm run build"
},
"keywords": [
"react",
"reducer",
"state-management"
],
"author": "scottrippey",
"license": "MIT",
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^17.0.2"
}
}