-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.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
{
"name": "@pagopa/react-native-cie",
"version": "1.4.1",
"description": "CIE (Carta di Identità Elettronica) module for react native.",
"main": "index.js",
"types": "index.d.ts",
"files": [
".ios/**/*",
"android/**/*",
"index.js",
"index.d.ts",
".react-native-cie.podspec"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "auto-changelog --config .auto-changelog.json --unreleased --commit-limit false --stdout --template preview.hbs",
"version": "auto-changelog -p --config .auto-changelog.json --unreleased && git add CHANGELOG.md",
"release": "release-it",
"test-npm-publish": "npm publish --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagopa/io-cie-sdk.git"
},
"keywords": [
"cie",
"react-native"
],
"author": "Matteo Boschi",
"license": "MIT",
"bugs": {
"url": "https://github.com/pagopa/io-cie-android-sdk/issues"
},
"homepage": "https://github.com/pagopa/io-cie-android-sdk#readme",
"devDependencies": {
"auto-changelog": "^2.2.1",
"danger": "^10.6.0",
"danger-plugin-digitalcitizenship": "^1.0.0",
"release-it": "15.5.0",
"@release-it/conventional-changelog": "5.0.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"changelog": "yarn auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": "yarn auto-changelog -p && git add ."
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}