-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
102 lines (102 loc) · 2.81 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
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
{
"name": "react-native-blob-courier",
"version": "5.0.2",
"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/buid",
"!ios/buid",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"bootstrap": "yarn example && yarn && yarn pods",
"compile": "bob build",
"example": "yarn --cwd example",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:fix": "yarn run lint --fix",
"pods": "cd example && pod-install --quiet",
"prepare": "npx husky install && yarn compile",
"prettier": "npx prettier src --check",
"prettier:fix": "yarn 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.12.9",
"@babel/preset-env": "^7.1.6",
"@commitlint/config-conventional": "^16.2.1",
"@react-native-community/eslint-config": "^3.2.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.0",
"@types/react": "17.0.1",
"@types/react-native": "0.64.10",
"commitlint": "^16.2.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.0.0",
"react-native": "0.69.8",
"react-native-builder-bob": "^0.18.0",
"react-native-codegen": "^0.69.2",
"semantic-release": "^19.0.2",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}