-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.29 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": "@brightcove/kacl",
"version": "0.1.11",
"description": "Keep a Changelog tooling for automating changelog releases",
"keywords": [
"changelog",
"keep-a-changelog",
"release",
"release-automation"
],
"homepage": "https://github.com/brightcove/kacl",
"bugs": {
"url": "https://github.com/brightcove/kacl/issues"
},
"main": "src/index.js",
"bin": {
"kacl": "kacl.js"
},
"scripts": {
"pretest": "eslint kacl.js src test",
"test": "nyc --reporter html --reporter text mocha",
"posttest": "./kacl.js lint",
"report": "nyc report --reporter=text-lcov > coverage.lcov",
"preversion": "./kacl.js prerelease",
"version": "./kacl.js release && git add CHANGELOG.md",
"postversion": "git push && gh-release"
},
"author": "Ted Janeczko <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^2.4.1",
"keep-a-changelog": "^0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/brightcove/kacl.git"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.2.2",
"gh-release": "^4.0.3",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"sinon": "^8.1.0",
"sinon-chai": "^3.2.0"
},
"files": [
"src",
"kacl.js",
"README.md",
"LICENSE"
]
}