-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.99 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "release-bump",
"version": "3.0.0-alpha.69",
"private": false,
"description": "Bumps Changelog and docblock versions for a code release.",
"keywords": [
"bump",
"changelog",
"docblock",
"jsdoc",
"release",
"version"
],
"homepage": "https://www.releasebump.dev",
"bugs": {
"url": "https://github.com/paulshryock/release-bump/issues/new?assignees=&labels=&template=bug_report.md&title="
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulshryock/release-bump.git"
},
"license": "MIT",
"author": "Paul Shryock (https://github.com/paulshryock)",
"type": "module",
"bin": {
"release-bump": "./dist/index.js"
},
"files": [
"/dist"
],
"scripts": {
"precompile": "rm -rf dist/ && mkdir -p dist/",
"compile": "run-p compile:*",
"compile:js": "esbuild src/index.ts --banner:js='#!/usr/bin/env node\n' --bundle --format=esm --minify-syntax --minify-whitespace --outfile=dist/index.js --platform=node",
"compile:sh": "cp -r src/index.sh dist/index.sh",
"postcompile": "chmod +x dist/index.sh && chmod +x dist/index.js",
"docs": "typedoc",
"fix": "run-s format:fix lint:fix",
"format": "npm run format:fix",
"format:check": "prettier --check --log-level=warn .",
"format:fix": "prettier --log-level=warn --write .",
"lint": "npm run lint:check",
"lint:check": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm-run-all -p quality docs types -s test:acceptance",
"prepare": "git config core.hooksPath ./bin/git-hooks/",
"quality": "run-p format:check lint typecheck test compile",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:acceptance": "npm test -- --config=jest.config.acceptance.ts",
"ts-node": "node --loader ts-node/esm --require ./bin/suppress-experimental-warnings.cjs",
"typecheck": "tsc",
"types": "dts-bundle-generator --no-banner=true --out-file=dist/index.d.ts src/index.ts",
"upgrade:all": "ncu --upgrade",
"upgrade:dry-run": "ncu",
"upgrade:minor": "ncu --target=minor --upgrade",
"upgrade:patch": "ncu --target=patch --upgrade",
"version": "npm exec release-bump -- $npm_package_version && git add ."
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@eslint-community/eslint-plugin-eslint-comments": "^4.1.0",
"@jest/globals": "^29.7.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-jest": "^29.7.0",
"dts-bundle-generator": "^9.0.0",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-json": "^3.1.0",
"jest": "^29.7.0",
"npm-check-updates": "^16.14.12",
"npm-run-all2": "^6.1.1",
"prettier": "^3.1.1",
"prettier-plugin-packagejson": "^2.4.7",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typescript": "^5.3.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}