forked from react-native-netinfo/react-native-netinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "@react-native-community/netinfo",
"version": "0.1.0",
"description": "React Native Network Info API for iOS & Android",
"main": "js/index.js",
"typings": "typings/index.d.ts",
"author": "Matt Oakes <[email protected]>",
"contributors": [],
"homepage": "https://github.com/react-native-community/react-native-netinfo#readme",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "yarn test:eslint && yarn test:flow && yarn test:jest",
"test:eslint": "eslint 'js/**/*.js' 'example/**/*.js'",
"test:flow": "flow check",
"test:jest": "jest"
},
"keywords": [
"react-native",
"react native",
"netinfo",
"networking",
"network info"
],
"peerDependencies": {
"react": "^16.0",
"react-native": "^0.57.0"
},
"dependencies": {
},
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-module-resolver": "^3.1.3",
"eslint": "5.13.0",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-flowtype": "3.2.1",
"eslint-plugin-jest": "22.2.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"eslint-plugin-react-native": "3.6.0",
"flow-bin": "^0.86.0",
"jest": "24.1.0",
"metro-react-native-babel-preset": "0.51.1",
"prettier": "^1.16.4",
"react": "16.6.3",
"react-native": "0.58.4",
"react-test-renderer": "16.6.3"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": ["<rootDir>/jest.setup.js"]
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-netinfo.git"
}
}