-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.95 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.95 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-native-blob-courier",
"version": "6.0.1",
"description": "Use this library to efficiently download and upload blobs in React Native",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.tsx",
"source": "src/index",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-blob-courier.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"bootstrap": "npm --prefix example install && npm install && npm run pods",
"compile": "bob build",
"example": "npm --prefix example install",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"pods": "cd example && pod-install --quiet",
"prepare": "husky && npm run compile",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"test": "jest --ci --config .jestrc.json",
"typescript": "tsc --noEmit"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/edeckers/react-native-blob-courier",
"author": "Ely Deckers <e.deckers@gmail.com> (https://github.com/edeckers)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/edeckers/react-native-blob-courier/issues"
},
"homepage": "https://github.com/edeckers/react-native-blob-courier#readme",
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@commitlint/config-conventional": "^20",
"@react-native/eslint-config": "^0.76",
"@semantic-release/git": "^10",
"@semantic-release/github": "^12",
"@semantic-release/npm": "^13",
"@semantic-release/release-notes-generator": "^14",
"@types/jest": "^30",
"@types/react": "^18",
"commitlint": "^20",
"eslint": "^8",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"husky": "^9",
"jest": "^30",
"jest-junit": "^16",
"lint-staged": "^16",
"pod-install": "^0.1",
"prettier": "^3",
"react": "^18",
"react-native": "^0.76",
"react-native-builder-bob": "^0.30",
"semantic-release": "^25",
"typescript": "^6"
},
"engines": {
"node": ">=22"
},
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.76"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"codegenConfig": {
"name": "BlobCourierSpec",
"type": "modules",
"jsSrcsDir": "src",
"includesGeneratedCode": true,
"android": {
"javaPackageName": "io.deckers.blob_courier"
}
}
}