-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "react-use-hover",
"version": "2.0.0",
"description": "State hook to determine whether a React element is being hovered",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run prettier-check && npm run build && npm run test",
"prebuild": "prettier --write src/**/*.ts{,x}",
"build": "tsc -p tsconfig.json",
"test": "jest --coverage src",
"prettier-check": "prettier --check src/**/*.ts{,x}"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/andrewbranch/react-use-hover.git"
},
"keywords": [
"React",
"hook",
"hover",
"useHover"
],
"author": "Andrew Branch <andrew@wheream.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewbranch/react-use-hover/issues"
},
"homepage": "https://github.com/andrewbranch/react-use-hover#readme",
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/react-test-renderer": "^16.0.3",
"jest": "^24.7.1",
"prettier": "^1.16.0",
"react": "^16.8.0-alpha.1",
"react-test-renderer": "^16.8.0-alpha.1",
"ts-jest": "^24.0.2",
"typescript": "^3.2.4"
},
"peerDependencies": {
"react": "^16.7.0-alpha.0"
},
"dependencies": {
"@types/react": "^16.7.20"
},
"jest": {
"preset": "ts-jest"
}
}