forked from rgommezz/react-native-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.14 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
{
"name": "react-native-offline",
"version": "3.1.0",
"description": "Handy toolbelt to deal with offline mode in React Native applications. Cross-platform, provides a smooth redux integration.",
"main": "./src/index.js",
"author": "Raul Gomez Acuña <[email protected]> (https://github.com/rauliyohmc)",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"jest": "jest",
"test": "concurrently \"npm run lint\" \"npm run jest:coverage\" \"npm run flow\"",
"flow": "flow",
"format": "eslint --fix js/**/",
"prettier": "prettier --single-quote --trailing-comma all --write \"src/**/*.js\"",
"jest:coverage": "node --harmony_proxies node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rauliyohmc/react-native-offline.git"
},
"keywords": [
"react-native",
"react",
"offline",
"offline-first",
"redux"
],
"files": [
"src"
],
"bugs": {
"url": "https://github.com/rauliyohmc/react-native-offline/issues"
},
"homepage": "https://github.com/rauliyohmc/react-native-offline#readme",
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"concurrently": "^3.4.0",
"coveralls": "^2.13.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.1.1",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "0.42.0",
"husky": "^0.14.3",
"jest": "^19.0.2",
"prettier": "^1.3.1",
"react": "16.0.0-alpha.6",
"react-native": "0.44.2",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.2",
"redux-thunk": "^2.2.0"
},
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"lodash": "^4.17.4"
},
"jest": {
"collectCoverage": true
}
}