-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
47 lines (46 loc) · 1.21 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
{
"name": "cordova-plugin-background-fetch",
"version": "7.2.4",
"description": "A plugin to periodically awaken your app in the background every 15 minutes to perform some work.",
"main": "./src/typescript/index.js",
"types": "./src/typescript/index.d.ts",
"scripts": {
"build": "tsc -p src/typescript",
"prepublish": "npm run build"
},
"cordova": {
"id": "cordova-plugin-background-fetch",
"platforms": [
"ios"
]
},
"repository": {
"type": "git",
"url": "https://github.com/transistorsoft/cordova-plugin-background-fetch.git"
},
"keywords": [
"cordova",
"background",
"fetch"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/transistorsoft/react-native-background-fetch/issues"
},
"homepage": "https://github.com/transistorsoft/react-native-background-fetch",
"engines": {
"cordovaDependencies": {
"<5.4.0": {
"cordova": ">=6.4.0",
"cordova-android": ">=6.0.0",
"cordova-ios": ">=4.3.0"
},
"5.4.0": {
"cordova": ">=7.1.0",
"cordova-android": ">=7.0.0",
"cordova-ios": ">=4.4.0"
}
}
},
"author": "Chris Scott, Transistor Software <chris@transistorsoft.com>"
}