-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "interval-changelog-generator",
"version": "0.1.1",
"description": "A CLI to generate custom changelog during the interval between two commits",
"license": "MIT",
"bin": {
"interval-changelog-generator": "./src/cli.js"
},
"main": "./src/changelog.js",
"scripts": {
"autofix": "eslint . --fix",
"lint": "eslint .",
"start": "node src/changelog.js",
"test": "npm run lint && jest --coverage"
},
"dependencies": {
"commander": "^2.17.1",
"conventional-changelog": "^2.0.3",
"conventional-changelog-core": "^3.1.0",
"conventional-changelog-preset-loader": "^2.0.1",
"timestring": "^5.0.1",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"eslint": "^4.17.0",
"jest": "^23.5.0"
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add",
"npx jest --bail --forceExit --findRelatedTests"
]
},
"contributors": [
"German Attanasio <[email protected]> (@german)",
"Mamoon Raja <[email protected]> (@mamoon.raja)"
],
"pre-commit": "lint-staged",
"repository": {
"type": "git",
"url": "[email protected]:mamoonraja/changelog-generator"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}