-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.15 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
{
"name": "sync-pom-version-to-package",
"version": "1.6.1",
"description": "Sync's the maven project version to the package.json",
"main": "index.js",
"author": "Branden Cash",
"license": "MIT",
"homepage": "https://github.com/MashupMill/sync-pom-version-to-package",
"keywords": [
"maven",
"pom",
"pom.xml",
"mvn",
"version",
"package.json",
"sync"
],
"repository": {
"type": "git",
"url": "https://github.com/MashupMill/sync-pom-version-to-package.git"
},
"bugs": {
"url": "https://github.com/MashupMill/sync-pom-version-to-package/issues"
},
"bin": {
"sync-pom-version": "src/cli.js"
},
"scripts": {
"commit": "npx @commitlint/prompt-cli",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "mocha",
"test:coverage": "nyc --reporter=html --reporter=text --reporter=lcov npm test",
"test:watch": "mocha --watch",
"semantic-release": "semantic-release",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/prompt-cli": "^12.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^7.21.0",
"husky": "^5.1.1",
"mocha": "^8.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"pinst": "^2.1.6",
"semantic-release": "^17.4.0"
},
"dependencies": {
"argparse": "^2.0.1",
"semver-regex": "^3.1.1",
"xml-parser": "^1.2.1"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}