-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 894 Bytes
/
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
{
"name": "@rehooks/window-mouse-position",
"version": "1.0.0",
"description": "React hook for window-mouse-position",
"main": "index.js",
"repository": "https://github.com/rehooks/window-mouse-position",
"author": "Wei-Wei Wu <me@weiweiwu.me>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"mouse",
"position",
"window"
],
"files": [
"index.*"
],
"scripts": {
"test": "ava test.js",
"example": "parcel example.html"
},
"peerDependencies": {
"react": "^16.7.0-alpha.0"
},
"devDependencies": {
"ava": "^0.25.0",
"browser-env": "^3.2.5",
"parcel": "^1.10.3",
"raf": "^3.4.0",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-test-renderer": "^16.7.0-alpha.0"
},
"ava": {
"require": [
"./test-setup.js"
]
}
}