-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.52 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-sync-adapter",
"title": "React Native Sync Adapter",
"version": "3.0.0",
"description": "Schedule background data synchronization using React Native and the Android SyncAdapter.",
"main": "index.js",
"author": {
"name": "Ferran Negre Pizarro",
"email": "[email protected]",
"url": "https://github.com/ferrannp"
},
"scripts": {
"test": "jest",
"flow": "flow",
"lint": "eslint .",
"ci": "jest && flow && eslint ."
},
"keywords": [
"react-native",
"sync-adapter",
"android",
"sync",
"background"
],
"files": [
"android/src",
"android/build.gradle",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/github_account/react-native-sync-adapter.git",
"baseUrl": "https://github.com/github_account/react-native-sync-adapter"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.60.0-rc.0 <1.0.x"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^1.0.0",
"babel-jest": "^25.3.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"flow-bin": "^0.113.0",
"jest": "^25.3.0",
"metro-react-native-babel-preset": "^0.58.0",
"react": "^16.9.0",
"react-native": "^0.61.5"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"/example/"
]
}
}