-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
45
46
47
{
"name": "use-unmount-signal",
"version": "1.0.0",
"description": "A React Hook to cancel promises when a component is unmounted",
"main": "build/use-unmount-signal.js",
"scripts": {
"build": "./build.sh",
"clean": "rm -rf build",
"prepare": "rm -rf build && ./build.sh",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expo/use-unmount-signal.git"
},
"keywords": [
"react",
"hook",
"unmount",
"cancel",
"abortcontroller",
"abortsignal"
],
"author": "Expo",
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/use-unmount-signal/issues"
},
"homepage": "https://github.com/expo/use-unmount-signal#readme",
"jest": {
"rootDir": "src",
"transform": {
"\\.[jt]sx?$": "@sucrase/jest-plugin"
}
},
"devDependencies": {
"@sucrase/jest-plugin": "^2.1.0",
"@testing-library/react-hooks": "^5.1.2",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"jest": "^26.6.3",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.2.4"
}
}