forked from ferrannp/react-native-sync-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "react-native-sync-adapter",
"version": "2.0.1",
"description": "Schedule background data synchronization using React Native and the Android SyncAdapter.",
"main": "index.js",
"author": "Ferran Negre Pizarro <fnp.developer@gmail.com> (https://github.com/ferrannp)",
"license": "MIT",
"scripts": {
"test": "jest",
"flow": "flow",
"lint": "eslint .",
"ci": "jest && flow && eslint ."
},
"keywords": [
"react-native",
"sync-adapter",
"android",
"sync",
"background"
],
"files": [
"android/src",
"android/gradle",
"android/gradlew",
"android/gradlew.bat",
"android/build.gradle",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ferrannp/react-native-sync-adapter.git"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.9.0",
"eslint-config-callstack-io": "^0.5.0",
"flow-bin": "0.53.0",
"jest": "21.2.1",
"react": "16.0.0-beta.5",
"react-native": "0.49.3",
"react-test-renderer": "16.0.0-beta.5"
},
"peerDependencies": {
"react-native": ">= 0.36.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": ["/example/"]
}
}