1 | {
|
2 | "name": "@alcalzone/release-script",
|
3 | "publishConfig": {
|
4 | "access": "public"
|
5 | },
|
6 | "version": "3.8.0",
|
7 | "description": "Release script to automatically increment version numbers and push git tags of Node.js projects",
|
8 | "keywords": [],
|
9 | "license": "MIT",
|
10 | "author": {
|
11 | "name": "AlCalzone",
|
12 | "email": "d.griesel@gmx.net"
|
13 | },
|
14 | "bin": "bin/release.js",
|
15 | "main": "build/index.js",
|
16 | "exports": {
|
17 | ".": "./build/index.js",
|
18 | "./package.json": "./package.json",
|
19 | "./*.map": "./build/*.js.map",
|
20 | "./*": "./build/*.js"
|
21 | },
|
22 | "types": "build/index.d.ts",
|
23 | "typesVersions": {
|
24 | "*": {
|
25 | "build/index.d.ts": [
|
26 | "build/index.d.ts"
|
27 | ],
|
28 | "*": [
|
29 | "build/*"
|
30 | ]
|
31 | }
|
32 | },
|
33 | "files": [
|
34 | "bin/",
|
35 | "build/*.js",
|
36 | "LICENSE"
|
37 | ],
|
38 | "engines": {
|
39 | "node": ">=12.20"
|
40 | },
|
41 | "dependencies": {
|
42 | "@alcalzone/release-script-core": "3.7.0",
|
43 | "@alcalzone/release-script-plugin-changelog": "3.7.0",
|
44 | "@alcalzone/release-script-plugin-exec": "3.7.0",
|
45 | "@alcalzone/release-script-plugin-git": "3.8.0",
|
46 | "@alcalzone/release-script-plugin-package": "3.7.3",
|
47 | "@alcalzone/release-script-plugin-version": "3.7.0",
|
48 | "alcalzone-shared": "^4.0.1",
|
49 | "axios": "^1.6.2",
|
50 | "enquirer": "^2.3.6",
|
51 | "fs-extra": "^10.1.0",
|
52 | "picocolors": "1.0.0",
|
53 | "semver": "^7.5.2",
|
54 | "source-map-support": "^0.5.21",
|
55 | "yargs": "^17.4.1"
|
56 | },
|
57 | "devDependencies": {
|
58 | "@alcalzone/release-script-testing": "3.7.0",
|
59 | "@types/yargs": "^17.0.10",
|
60 | "typescript": "~4.8.4"
|
61 | },
|
62 | "scripts": {
|
63 | "clean": "tsc -b tsconfig.build.json --clean",
|
64 | "build": "tsc -b tsconfig.build.json",
|
65 | "watch": "tsc -b tsconfig.build.json --watch"
|
66 | },
|
67 | "homepage": "https://github.com/AlCalzone/release-script",
|
68 | "repository": {
|
69 | "type": "git",
|
70 | "url": "git@github.com:AlCalzone/release-script.git"
|
71 | },
|
72 | "bugs": {
|
73 | "url": "https://github.com/AlCalzone/release-script/issues"
|
74 | },
|
75 | "readmeFilename": "README.md"
|
76 | } |
\ | No newline at end of file |