-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.16 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
80
81
{
"name": "react-online",
"version": "0.0.0-development",
"description": "React component that tells you if you are online or offline",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore *.test.js",
"commit": "git-cz",
"precommit": "flow check src && lint-staged",
"prettify": "prettier --write 'src/**/*.js'",
"flow": "flow src",
"lint": "eslint src",
"test": "jest -u",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/TheWorm/react-online.git"
},
"keywords": [
"react",
"online",
"offline",
"connection",
"status",
"network"
],
"author": "Davide Briani <johnnytheworm@gmail.com> (https://github.com/theworm)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheWorm/react-online/issues"
},
"homepage": "https://github.com/TheWorm/react-online#readme",
"dependencies": {
"isomorphic-is-online": "1.2.1",
"react": "16.4.0",
"react-native": "0.55.4"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.3",
"babel-jest": "23.0.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "1.7.0",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"codecov.io": "0.1.6",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-plugin-react-app": "3.0.0",
"flow-bin": "0.73.0",
"husky": "0.14.3",
"jest": "23.1.0",
"lint-staged": "7.1.2",
"prettier": "1.13.3",
"react-dom": "16.4.0",
"react-test-renderer": "16.4.0",
"rimraf": "2.6.2",
"semantic-release": "15.5.1",
"travis-deploy-once": "^5.0.0"
},
"lint-staged": {
"src/**/*.js": [
"npm run lint --",
"prettier --write",
"git add"
]
},
"files": [
"dist",
"README.md"
]
}