-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "changescribe",
"version": "3.0.5",
"description": "",
"main": "index.js",
"keywords": [
"markdown",
"changelog",
"changelog.md",
"changelogger",
"changescribe",
"project",
"management",
"versioning",
"semver",
"devops",
"tool",
"changelog-generator",
"code"
],
"contributors": [
"giovanni-bertoncelli",
"elia-piacentini"
],
"scripts": {
"start": "node . --targetVersion 1.0.0",
"test": "tap run --coverage-report=lcov",
"version": "git branch -D 'release_'$npm_package_version || true && git checkout -b 'release_'$npm_package_version && node ./cli.js && git add .",
"postversion": "git commit -mv$npm_package_version && git push --set-upstream origin 'release_'$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ctinnovation/changescribe.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"handlebars": "^4.7.7",
"moment": "^2.30.1",
"semver": "^7.3.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/tap": "^15.0.11",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"tap": "^18.7.0"
},
"bin": {
"changescribe": "cli.js"
},
"engines": {
"node": ">=16"
}
}