forked from Rapsssito/react-native-background-actions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.03 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
70
71
72
73
74
75
76
77
{
"name": "react-native-background-actions",
"version": "4.0.1",
"description": "React Native background service library for running background tasks forever in Android & iOS",
"keywords": [
"react-native",
"background",
"service",
"task",
"android",
"ios"
],
"files": [
"/android/src/",
"/android/build.gradle",
"/ios",
"!Podfile*",
"/windows",
"/src",
"/lib",
"/*.podspec",
"/jest"
],
"types": "lib/types/index.d.ts",
"main": "src/index.js",
"scripts": {
"ci": "yarn install --frozen-lockfile && yarn lint && yarn declaration:build && yarn checkjs && yarn test",
"lint": "eslint .",
"checkjs": "tsc",
"eslint:fix": "yarn eslint --fix",
"test": "jest ./__tests__/",
"declaration:build": "tsc -p ./declaration.tsconfig.json",
"prepublishOnly": "yarn declaration:build && yarn checkjs",
"pods": "cd ios && pod install"
},
"repository": {
"type": "git",
"url": "https://github.com/Rapsssito/react-native-background-actions.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Rapsssito"
},
"author": {
"name": "Rapsssito",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"peerDependencies": {
"react-native": ">=0.47.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.0",
"@semantic-release/npm": "^7.0.0",
"@types/jest": "^25.1.3",
"@types/react-native": "^0.61.17",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.4",
"prettier": "^1.18.2",
"react": "16.9.0",
"react-native": "^0.61.4",
"semantic-release": "^17.0.1",
"typescript": "4.0.3"
},
"dependencies": {
"eventemitter3": "^4.0.7"
}
}