-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.1 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
{
"name": "@vtabary/keepachangelog-cli",
"version": "0.4.0",
"description": "a cli to manage the changelog files of your projects",
"main": "./dist/lib/index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"bin": {
"keepachangelog": "./dist/bin/keepachangelog.js"
},
"private": false,
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc --project tsconfig.build.json",
"postbuild": "node ./scripts/set-version.mjs replace dist/data/version.js",
"dev": "ts-node -P tsconfig.build.json ./src/bin/keepachangelog.ts",
"start": "node ./dist/bin/keepachangelog.js",
"test": "jest",
"preversion": "npm run build && node ./dist/bin/keepachangelog display unreleased && node ./dist/bin/keepachangelog confirm $npm_new_version --current-version $npm_old_version",
"version": "npm run build && node ./dist/bin/keepachangelog release $npm_new_version && git add ./CHANGELOG.md",
"postversion": "git push origin HEAD && git push origin v$npm_new_version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtabary/keepachangelog-cli.git"
},
"author": {
"name": "Vincent Tabary",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vtabary/keepachangelog-cli/issues"
},
"homepage": "https://github.com/vtabary/keepachangelog-cli#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-jest": "^27.4.5",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.3",
"ts-node": "^10",
"typescript": "^4"
},
"dependencies": {
"chalk": "^4",
"commander": "^8",
"find-up": "^5.0.0",
"inquirer": "^8.2.0"
},
"files": [
"dist",
"README.md"
]
}