-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 939 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": "no-internet",
"version": "1.6.1",
"description": "Checking if the internet is accessible (not local connection only)",
"main": "./src/no-internet.js",
"repository": "https://github.com/shystruk/no-internet.git",
"directories": {
"src": "src"
},
"scripts": {
"report-coverage": "cat ./coverage/lcov.info | codecov",
"coverage": "nyc report --reporter=lcov",
"test": "nyc ava --browser && npm run coverage"
},
"keywords": [
"internet",
"online",
"offline",
"on-internet",
"network",
"connected",
"accessible",
"connectivity",
"navigator",
"navigator.onLine"
],
"author": {
"name": "Vasyl Stokolosa",
"email": "[email protected]",
"url": "https://github.com/shystruk"
},
"license": "MIT",
"dependencies": {
"set-interval": "^2.0.1"
},
"devDependencies": {
"ava": "^0.24.0",
"browser-env": "^3.2.4",
"codecov.io": "^0.1.6",
"nyc": "^11.3.0",
"xhr-mock": "^1.9.1"
}
}