forked from antfu-collective/bumpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.9 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
{
"name": "bumpp",
"version": "8.1.0",
"packageManager": "pnpm@7.2.1",
"description": "Bump version, commit changes, tag, and push to Git",
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://github.com/antfu/bumpp",
"repository": {
"type": "git",
"url": "https://github.com/antfu/bumpp.git"
},
"keywords": [
"version",
"bump",
"npm",
"node",
"bower",
"package",
"git",
"tag",
"push",
"prompt"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"bumpp": "bin/bumpp.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rimraf .nyc_output coverage dist",
"lint": "eslint .",
"build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean",
"watch": "npm run build -- --watch src",
"start": "esno src/cli/run.ts",
"upgrade": "npm-check -u && npm audit fix",
"bumpp": "esno src/cli/run.ts --tag --push --all",
"prepublishOnly": "npm run clean && npm run build",
"release": "npm run bumpp && npm publish"
},
"dependencies": {
"@jsdevtools/ez-spawn": "^3.0.4",
"cac": "^6.7.12",
"fast-glob": "^3.2.11",
"kleur": "^4.1.4",
"prompts": "^2.4.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@types/node": "^14.17.14",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.8",
"detect-indent": "^7.0.0",
"detect-newline": "^3.1.0",
"eslint": "^8.8.0",
"esno": "^0.9.1",
"log-symbols": "^4.1.0",
"npm-check": "^5.9.2",
"rimraf": "^3.0.2",
"tsup": "^5.11.9",
"typescript": "^4.4.2"
}
}