-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "usetimeout-react-hook",
"version": "0.1.2",
"description": "React.js custom hook that sets a leak-safe timeout and returns a function to cancel it before the timeout expires.",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkomyno/usetimeout-react-hook.git"
},
"files": [
"build",
"README.md"
],
"keywords": [
"react",
"hooks",
"timeout",
"cancelable"
],
"author": "Alberto Schiabel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkomyno/usetimeout-react-hook/issues"
},
"homepage": "https://github.com/jkomyno/usetimeout-react-hook#readme",
"devDependencies": {
"@testing-library/react-hooks": "^1.1.0",
"@types/jest": "^24.0.15",
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-test-renderer": "^16.8.6",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"dependencies": {}
}