-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "use-custom-compare-effect",
"version": "0.0.5",
"description": "useEffect hook which takes a comparison function",
"main": "lib/index.js",
"scripts": {
"flow": "flow",
"test": "jest",
"check": "npm run flow && npm run test",
"clean": "rm -rf lib",
"babel": "babel -d lib src",
"gen-types": "cp src/index.js lib/index.js.flow",
"build": "npm run clean && npm run babel && npm run gen-types",
"prepack": "npm run check && npm run build"
},
"homepage": "https://github.com/sanjagh/use-custom-compare-effect#readme",
"repository": "github:sanjagh/use-custom-compare-effect",
"keywords": [
"react",
"react-hooks",
"useEffect"
],
"author": "Amirali Esmaeili <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@testing-library/react-hooks": "^3.2.1",
"flow-bin": "^0.114.0",
"jest": "^24.9.0",
"react": "^16.9.0",
"react-test-renderer": "^16.9.0"
}
}