-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "react-native-background-fetch",
"version": "4.4.2",
"description": "iOS & Android BackgroundFetch API implementation for React Native",
"scripts": {
"build": "yarn run build:expo",
"test": "echo \"Error: no test specified\" && exit 1",
"build:expo": "rimraf expo/plugin/build && tsc --build ./expo/plugin"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/transistorsoft/react-native-background-fetch.git"
},
"keywords": [
"react-native",
"react-component",
"ios",
"background",
"fetch"
],
"author": "Chris Scott, Transistor Software <chris@transistorsoft.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/transistorsoft/react-native-background-fetch/issues"
},
"homepage": "https://transistorsoft.github.io/react-native-background-fetch",
"main": "index.js",
"types": "index.d.ts",
"codegenConfig": {
"name": "RNBackgroundFetchSpec",
"type": "modules",
"jsSrcsDir": "src"
},
"dependencies": {
"@transistorsoft/background-fetch-types": "^1.0.0"
},
"peerDependencies": {
"@expo/config-plugins": ">=10.0.0"
},
"peerDependenciesMeta": {
"@expo/config-plugins": {
"optional": true
}
},
"devDependencies": {
"@expo/config-plugins": "^55.0.8",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
}
}