-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-network-status",
"version": "1.0.2",
"description": "Network status and polling for React Framework",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tofiqquadri/react-network-status.git"
},
"files": [
"dist"
],
"authors": [
"Tofiq Quadri"
],
"license": "MIT",
"devDependencies": {
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"eslint-plugin-security": "^1.4.0",
"prettier": "^2.1.2",
"rollup": "^2.36.1",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "17.0.0",
"react-dom": "17.0.0"
},
"bugs": {
"url": "https://github.com/tofiqquadri/react-network-status/issues"
},
"homepage": "https://github.com/tofiqquadri/react-network-status#readme",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"test": "jest spec",
"test-watch": "jest spec --watch",
"lint": "eslint src/ demo/src",
"prettier": "prettier src/** demo/src/** --write",
"test.cover": "jest spec --coverage"
},
"keywords": [
"react-network",
"react-online-offline-detect",
"react-network-status",
"react",
"next",
"check status",
"react network status"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!<rootDir>/node_modules/",
"!<rootDir>/demo/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}