-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 857 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 857 Bytes
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
{
"name": "use-before-unload",
"version": "1.0.1",
"description": "React hook to setup an 'onbeforeunload' listener",
"main": "lib/index.js",
"author": "Christian Maniewski <code@chmanie.com>",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.prod.json && flowgen lib/index.d.ts -o lib/index.js.flow"
},
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/react": "^16.8.4",
"flowgen": "^1.5.8",
"jest": "^24.1.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-hooks-testing-library": "^0.3.4",
"semantic-release": "^15.13.3",
"ts-jest": "^24.0.0",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": "^16.8.3"
},
"dependencies": {}
}