-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
60 lines (60 loc) · 1.21 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
{
"name": "react-native-syan-image-picker",
"version": "0.5.3",
"description": "React-Native 多图片选择 支持裁剪 压缩",
"main": "src/index.js",
"types": "src/index.d.ts",
"source": "src/index",
"files": [
"src",
"ios",
"android",
"RNSyanImagePicker.podspec",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pu": "npm publish",
"release": "release-it"
},
"keywords": [
"react-native",
"image",
"image-picker",
"syan",
"PictureSelector",
"TZImagePickerController",
"Photo"
],
"author": "syan",
"license": "MIT",
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.1",
"release-it": "^14.11.6"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}