-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "use-immediate-effect",
"version": "1.1.2",
"description": "Because sometimes you want your effects to run right away",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apearce/use-immediate-effect.git"
},
"keywords": [
"React",
"Hooks",
"Effects"
],
"author": "Alan Pearce <alan.pearce@alttag.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apearce/use-immediate-effect/issues"
},
"homepage": "https://github.com/apearce/use-immediate-effect#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@testing-library/react-hooks": "^3.4.2",
"babel-preset-minify": "^0.5.1",
"jest": "^26.6.3",
"react-test-renderer": "^17.0.1"
},
"peerDependencies": {
"react": "^16.9.0"
}
}