-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "zh-converter",
"version": "1.1.4",
"description": "Conversion Simplified Chinese <-> Traditional Chinese.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "istanbul cover _mocha test -- --reporter mocha-junit-reporter",
"release": "release-it --ci",
"changelog": "npx auto-changelog -p && git add CHANGELOG.md"
},
"bin": {
"zh-converter": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/a26007565/zh-converter.git"
},
"author": "weiting",
"license": "MIT",
"bugs": {
"url": "https://github.com/a26007565/zh-converter/issues"
},
"homepage": "https://github.com/a26007565/zh-converter#readme",
"keywords": [
"conversion",
"convert",
"transform",
"Chinese",
"Language",
"Language transform",
"Simplified",
"Traditional"
],
"dependencies": {
"chinese-conv": "^1.0.1",
"commander": "^2.19.0"
},
"devDependencies": {
"chai": "4.2.0",
"handlebars": "4.4.0",
"istanbul": "1.1.0-alpha.1",
"js-yaml": "3.13.1",
"lodash": "4.17.19",
"mocha": "5.2.0",
"mocha-junit-reporter": "^1.23.3",
"release-it": "12.3.4"
},
"release-it": {
"github": {
"releaseName": "v${version}"
},
"gitlab": {
"releaseName": "v${version}"
},
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template ./changelog.hbs ",
"commitMessage": "Release v${version}",
"tagName": "v${version}",
"pushRepo": "origin"
}
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "changelog.hbs",
"unreleased": true,
"commitLimit": false
}
}