-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 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
{
"name": "isomorphic-is-online",
"version": "0.0.0-development",
"description": "Utility to know if you are online, in Node or browser",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore *.test.js",
"commit": "git-cz",
"precommit": "flow check && lint-staged",
"prettify": "prettier --write 'src/**/*.js'",
"flow": "flow",
"lint": "eslint src",
"test": "jest -u",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/TheWorm/isomorphic-is-online.git"
},
"keywords": [
"online",
"connection",
"status",
"network",
"offline",
"isomorphic",
"universal"
],
"author": "Davide Briani <[email protected]> (https://github.com/theworm)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheWorm/isomorphic-is-online/issues"
},
"homepage": "https://github.com/TheWorm/isomorphic-is-online#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.3",
"babel-preset-env": "1.7.0",
"babel-preset-flow": "6.23.0",
"codecov.io": "0.1.6",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.19.1",
"eslint-plugin-flowtype": "2.49.3",
"flow-bin": "0.73.0",
"husky": "0.14.3",
"jest": "23.1.0",
"lint-staged": "7.1.3",
"prettier": "1.13.4",
"rimraf": "2.6.2",
"semantic-release": "15.6.0",
"travis-deploy-once": "^5.0.0"
},
"lint-staged": {
"src/**/*.js": [
"npm run lint --",
"prettier --write",
"git add"
]
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"babel-polyfill": "6.26.0",
"cross-fetch": "2.2.1",
"react-native": "0.55.4"
}
}