bumpp 7.2.0 → 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,18 @@
1
1
  {
2
2
  "name": "bumpp",
3
- "version": "7.2.0",
3
+ "version": "8.0.0",
4
+ "packageManager": "pnpm@7.2.1",
4
5
  "description": "Automatically (or with prompts) bump your version number, commit changes, tag, and push to Git",
6
+ "author": {
7
+ "name": "James Messinger",
8
+ "url": "https://jamesmessinger.com"
9
+ },
10
+ "license": "MIT",
11
+ "homepage": "https://jstools.dev/version-bump-prompt",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/antfu/bumpp.git"
15
+ },
5
16
  "keywords": [
6
17
  "version",
7
18
  "bump",
@@ -14,16 +25,6 @@
14
25
  "push",
15
26
  "prompt"
16
27
  ],
17
- "author": {
18
- "name": "James Messinger",
19
- "url": "https://jamesmessinger.com"
20
- },
21
- "license": "MIT",
22
- "homepage": "https://jstools.dev/version-bump-prompt",
23
- "repository": {
24
- "type": "git",
25
- "url": "https://github.com/antfu/bumpp.git"
26
- },
27
28
  "main": "dist/index.js",
28
29
  "types": "dist/index.d.ts",
29
30
  "bin": {
@@ -33,12 +34,15 @@
33
34
  "bin",
34
35
  "dist"
35
36
  ],
37
+ "engines": {
38
+ "node": ">=10"
39
+ },
36
40
  "scripts": {
37
41
  "clean": "rimraf .nyc_output coverage dist",
38
- "lint": "eslint src test",
42
+ "lint": "eslint .",
39
43
  "build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean",
40
44
  "watch": "npm run build -- --watch src",
41
- "start": "esno src/cli/dev.ts",
45
+ "start": "esno src/cli/run.ts",
42
46
  "test": "mocha && npm run lint",
43
47
  "coverage": "nyc node_modules/mocha/bin/mocha",
44
48
  "upgrade": "npm-check -u && npm audit fix",
@@ -46,11 +50,18 @@
46
50
  "prepublishOnly": "npm run clean && npm run build",
47
51
  "release": "npm run bumpp && npm publish"
48
52
  },
53
+ "dependencies": {
54
+ "@jsdevtools/ez-spawn": "^3.0.4",
55
+ "cac": "^6.7.12",
56
+ "chalk": "^4.1.2",
57
+ "globby": "^11.0.4",
58
+ "prompts": "^2.4.1",
59
+ "semver": "^7.3.5"
60
+ },
49
61
  "devDependencies": {
62
+ "@antfu/eslint-config": "^0.25.1",
50
63
  "@jsdevtools/chai-exec": "^2.1.1",
51
- "@jsdevtools/eslint-config": "^1.1.4",
52
64
  "@types/chai": "^4.2.21",
53
- "@types/command-line-args": "^5.2.0",
54
65
  "@types/inquirer": "^7.3.3",
55
66
  "@types/mocha": "^8.2.3",
56
67
  "@types/node": "^14.17.14",
@@ -59,7 +70,7 @@
59
70
  "chai": "^4.3.4",
60
71
  "detect-indent": "^7.0.0",
61
72
  "detect-newline": "^3.1.0",
62
- "eslint": "^7.32.0",
73
+ "eslint": "^8.8.0",
63
74
  "esno": "^0.9.1",
64
75
  "log-symbols": "^4.1.0",
65
76
  "mocha": "^8.4.0",
@@ -70,16 +81,5 @@
70
81
  "tsup": "^5.11.9",
71
82
  "typescript": "^4.4.2"
72
83
  },
73
- "dependencies": {
74
- "@jsdevtools/ez-spawn": "^3.0.4",
75
- "chalk": "^4.1.2",
76
- "command-line-args": "^5.2.0",
77
- "globby": "^11.0.4",
78
- "prompts": "^2.4.1",
79
- "semver": "^7.3.5"
80
- },
81
- "engines": {
82
- "node": ">=10"
83
- },
84
84
  "engineStrict": true
85
85
  }