-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 858 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
{
"name": "use-change-aware-effect",
"version": "1.0.1",
"description": "useEffect, but know what caused the effect to run",
"scripts": {
"test": "npx jest",
"build": "tsc",
"prepare": "npm run test && npm run build"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["/dist"],
"author": "Steven Swartz",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/swar8080/useChangeAwareEffect"
},
"keywords": ["react", "useEffect", "hooks"]
}