-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 905 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
{
"name": "@rehooks/online-status",
"version": "1.1.2",
"description": "React hook for subscribing to `online`/`offline` events and the `navigator.onLine` property to see current status",
"main": "src/index.js",
"repository": "https://github.com/rehooks/online-status",
"author": "@mathdroid",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"offline",
"online"
],
"files": [
"src/index.js"
],
"scripts": {
"test": "ava __tests__/test.js",
"example": "parcel docs/example.html",
"release": "np"
},
"devDependencies": {
"ava": "1.3.1",
"browser-env": "3.2.6",
"np": "*",
"parcel": "1.12.2",
"raf": "3.4.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4"
},
"ava": {
"require": [
"./__tests__/test-setup.js"
]
}
}