-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
77 lines (77 loc) · 1.88 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
{
"name": "react-detect-offline",
"version": "2.4.5",
"description": "Offline and Online components for React",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cwise89/react-detect-offline.git"
},
"files": [
"/dist/"
],
"author": "Chris Bolin",
"contributors": [
{
"name": "Cody Wise",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.2",
"babel-jest": "^21.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.19.1",
"eslint-config-formidable": "^3.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^21.0.1",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
},
"bugs": {
"url": "https://github.com/cwise89/react-detect-offline/issues"
},
"homepage": "https://github.com/cwise89/react-detect-offline#readme",
"scripts": {
"build": "babel src/index.js -o dist/index.js",
"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",
"offline",
"online",
"detect",
"disconnect"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!<rootDir>/node_modules/",
"!<rootDir>/demo/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}