-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "logchanges",
"version": "1.1.2",
"description": "Generate changelog based on Git commits",
"author": "Bozhidar Dryanovski <[email protected]> (https://github.com/bdryanovski)",
"license": "MIT",
"main": "./lib/index.js",
"bin": {
"logchanges": "./bin/index.js"
},
"scripts": {
"start": "npm run build",
"build": "tsc -p .",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.ts'",
"clean": "rm -rf ./lib ./docs",
"tscov": "tscov --min-coverage 90",
"tscov:d": "tscov --details",
"declaration:build": "rm -f libs/index.d.ts && tsc -p declaration.tsconfig.json",
"declaration:check": "git diff --exit-code -- libs/index.d.ts",
"publish-package": "npm run build && npm publish",
"docs": "typedoc --out docs ./src",
"changelog": "./bin/index.js",
"update-package": "npm run clean && npm run docs && npm run build && npm run changelog",
"version": "npm run update-package && git add . && git commit -s -S -m 'chore: update docs/ and CHANGELOG'"
},
"keywords": [
"changelog",
"git",
"markdown",
"json"
],
"changelog": {
"nobody": true,
"allowUnknown": true
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"dependencies": {
"commander": "^5.0.0",
"dateformat": "^3.0.3",
"github-url-from-git": "^1.5.0"
},
"devDependencies": {
"@liftr/tscov": "^1.4.5",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.1",
"@types/node": "^12.12.31",
"@types/dateformat": "^3.0.1",
"@types/github-url-from-git": "^1.5.0",
"jest": "^25.3.0",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
}
}