forked from ungoldman/changelog-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "changelog-parser",
"description": "Change log parser for node.",
"version": "2.4.0",
"author": "Nate Goldman <[email protected]>",
"bin": {
"changelog-parser": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/hypermodules/changelog-parser/issues"
},
"contributors": [
"Nate Goldman <[email protected]>",
"Rachel Nehmer <[email protected]>",
"Viktor Havrylin <[email protected]>",
"J R Mykolyn <[email protected]>"
],
"dependencies": {
"line-reader": "^0.2.4",
"remove-markdown": "^0.2.2"
},
"devDependencies": {
"gh-release": "^3.1.1",
"standard": "^10.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0"
},
"homepage": "https://github.com/hypermodules/changelog-parser",
"keywords": [
"CHANGELOG.md",
"changelog",
"parser",
"semantic",
"semver",
"versioning"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hypermodules/changelog-parser.git"
},
"scripts": {
"release": "gh-release && npm publish",
"test": "standard && node test | tap-spec"
}
}