forked from ungoldman/changelog-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "changelog-parser",
"description": "Change log parser for node.",
"version": "3.0.1",
"author": "Nate Goldman <[email protected]>",
"bin": {
"changelog-parser": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/ungoldman/changelog-parser/issues"
},
"contributors": [
"Nate Goldman <[email protected]>",
"Rachel Nehmer <[email protected]>",
"Viktor Havrylin <[email protected]>",
"J R Mykolyn <[email protected]>",
"Bogdan Plieshka <[email protected]>",
"Ciro Nunes <[email protected]>",
"Andy Edwards <[email protected]>"
],
"dependencies": {
"line-reader": "^0.2.4",
"remove-markdown": "^0.5.0"
},
"devDependencies": {
"gh-release": "^7.0.0",
"standard": "^17.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.5.2"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/ungoldman/changelog-parser",
"keywords": [
"CHANGELOG.md",
"changelog",
"parser",
"semantic",
"semver",
"versioning"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ungoldman/changelog-parser.git"
},
"scripts": {
"release": "gh-release && npm publish",
"test": "standard && node test | tap-spec"
}
}