-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.48 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
{
"name": "cordova-khipu",
"version": "2.7.3",
"description": "Khipu Cordova Plugin",
"cordova": {
"id": "cordova-khipu",
"platforms": [
"android",
"ios"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/khipu/cordova-khipu.git"
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"author": "khipu",
"license": "MIT",
"bugs": {
"url": "https://github.com/khipu/cordova-khipu/issues"
},
"homepage": "https://github.com/khipu/cordova-khipu#readme",
"scripts": {
"release": "release-it",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@release-it/conventional-changelog": "^9.0.3",
"commitlint": "^19.6.1",
"husky": "^9.1.7",
"release-it": "^17.10.0",
"xml2js": "^0.6.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"requireCleanWorkingDir": true,
"commitMessage": "chore: release ${version}",
"tagName": "${version}",
"push": true,
"requireBranch": "main"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
},
"hooks": {
"after:bump": "node scripts/update-plugin-version.js && git add plugin.xml && git commit -m 'chore: sync version to plugin.xml'"
}
}
}