forked from elliottkember/react-native-background-upload
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.62 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.62 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
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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-native-background-upload",
"version": "7.5.3",
"description": "Cross platform http post file uploader with android and iOS background support",
"main": "src/index",
"typings": "lib/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"scripts": {
"build": "tsc && tsc-alias",
"lint": "yarn lint-root --fix && yarn lint-example --fix",
"lint:ci": "yarn lint-root && yarn lint-example",
"lint-root": "eslint --ext js,jsx,ts,tsx src --quiet",
"lint-example": "yarn --cwd example/RNBGUExample lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Vydia/react-native-background-upload.git"
},
"keywords": [
"NSURLSession",
"UploadService",
"background",
"upload",
"react-native",
"react"
],
"peerDependencies": {
"react": "*",
"react-native": ">=0.47.0"
},
"author": "Steve Potter",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Vydia/react-native-background-upload/issues"
},
"homepage": "https://github.com/Vydia/react-native-background-upload#readme",
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.75.3",
"@react-native/eslint-config": "0.75.3",
"@react-native/metro-config": "0.75.3",
"@react-native/typescript-config": "0.75.3",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^4.2.3",
"jest": "^29.6.3",
"lint-staged": "^10.0.8",
"prettier": "2.8.8",
"react": "18.3.1",
"react-native": "0.75.3",
"react-test-renderer": "18.3.1",
"semantic-release": "^15.13.31",
"tsc-alias": "^1.6.8",
"typescript": "5.0.4"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/release-notes-generator"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}