-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.78 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.78 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
{
"name": "react-native-presigned-s3",
"version": "0.3.1",
"author": "Luka Dodelia <luka@picktek.com>",
"bugs": {
"email": "luka@picktek.com",
"url": "https://github.com/lukasa1993/react-native-presigned-s3"
},
"description": "Helpers for s3 presign upload and download",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/lukasa1993/react-native-presigned-s3#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist",
"repository": "github:lukasa1993/react-native-presigned-s3",
"peerDependencies": {
"@react-native-async-storage/async-storage": "*",
"react": "*",
"react-native": "*",
"react-native-compressor": "1.9.0",
"react-native-fs": "2.20.0"
},
"scripts": {
"watch": "tsc --project tsconfig.json --watch",
"build": "tsc --project tsconfig.json",
"clean:dist": "rm -rf dist",
"lint": "eslint src",
"prebuild": "yarn clean:dist",
"prepare": "yarn build",
"test": "jest src",
"test:coverage": "jest --coverage",
"dev": "cpx \"src/**/*.*\" ./example/app/node_modules/react-native-presigned-s3 --watch",
"release": "semantic-release"
},
"dependencies": {
"@lukasa1993/p-queue": "7.3.4",
"p-queue": "npm:@lukasa1993/p-queue",
"path-browserify": "1.0.1"
},
"devDependencies": {
"@react-native-community/eslint-config": "3.2.0",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.2",
"@types/react": "*",
"@types/react-native": "*",
"babel-eslint": "*",
"commitizen": "4.3.0",
"cpx": "1.5.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-react-native": "*",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"metro-react-native-babel-preset": "0.76.0",
"prettier": "2.8.4",
"react": "18.2.0",
"react-native": "*",
"react-native-compressor": "1.9.0",
"react-native-fs": "2.20.0",
"semantic-release": "*",
"typescript": "4.9.5"
},
"release": {
"branches": [
"main"
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "yarn eslint"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "yarn lint-staged && yarn test",
"pre-push": "yarn tsc && yarn lint --quiet && yarn test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}