-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.89 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@norviah/bump",
"version": "1.5.1",
"description": "Simplify the release process of your projects",
"author": "norviah",
"bin": {
"bump": "./bin/run"
},
"homepage": "https://github.com/norviah/bump",
"license": "MIT",
"main": "dist/index.js",
"repository": "https://github.com/norviah/bump",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"bin": "bump",
"dirname": "bump",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"changelog": {
"description": "Contains commands revolving around a changelog for your project."
}
}
},
"types": "dist/index.d.ts",
"scripts": {
"build:alias": "./node_modules/tsc-alias/dist/bin/index.js -p tsconfig.json",
"build:src": "./node_modules/typescript/bin/tsc && pnpm run build:alias",
"build:watch": "./node_modules/nodemon/bin/nodemon.js",
"build": "shx rm -rf dist && pnpm run build:src",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"lint": "node ./node_modules/prettier/bin-prettier.js --config .prettierrc.json --write ./src",
"start": "./node_modules/ts-node/dist/bin.js -r tsconfig-paths/register src/index.ts",
"exec": "./node_modules/ts-node/dist/bin.js -r tsconfig-paths/register",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/norviah/bump/issues",
"keywords": [
"oclif"
],
"dependencies": {
"@oclif/core": "^2.8.7",
"@oclif/plugin-help": "^5.2.9",
"app-root-path": "^3.1.0",
"chalk": "^4.1.2",
"execa": "5.1.1",
"simple-git": "^3.19.1",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
"devDependencies": {
"@oclif/test": "^2.3.22",
"@tsconfig/node16": "^1.0.4",
"@types/app-root-path": "^1.2.5",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10",
"nodemon": "^2.0.22",
"oclif": "^3.9.1",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.3",
"type-fest": "^3.12.0",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.3"
},
"pnpm": {
"overrides": {
"nanoid@>=3.0.0 <3.1.31": ">=3.1.31",
"minimatch@<3.0.5": ">=3.0.5"
}
}
}