@heroku/heroku-cli-util 10.8.0 → 10.8.1-alpha.1

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.
Files changed (1) hide show
  1. package/package.json +9 -19
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@heroku/heroku-cli-util",
4
- "version": "10.8.0",
4
+ "version": "10.8.1-alpha.1",
5
5
  "description": "Set of helpful CLI utilities",
6
6
  "author": "Heroku",
7
7
  "license": "ISC",
@@ -53,32 +53,24 @@
53
53
  ],
54
54
  "devDependencies": {
55
55
  "@heroku-cli/schema": "^2.0.0",
56
- "@heroku-cli/test-utils": "^0.2.0",
57
- "@types/chai": "^5.2.3",
58
- "@types/chai-as-promised": "^8.0.2",
56
+ "@heroku-cli/test-utils": "^0.3.0",
59
57
  "@types/debug": "^4.1.12",
60
- "@types/mocha": "^10.0.10",
61
58
  "@types/node": "^22.15.3",
62
- "@types/sinon": "^20.0.0",
63
- "@types/sinon-chai": "^4.0.0",
64
59
  "@types/tmp": "^0.2.6",
65
60
  "@types/tunnel-ssh": "4.1.1",
66
- "c8": "^11.0.0",
67
- "chai": "^5.3.3",
68
- "chai-as-promised": "^8.0.2",
61
+ "@vitest/coverage-v8": "^4.0.0",
69
62
  "eslint": "^9",
70
63
  "eslint-config-oclif": "^6.0.144",
71
- "mocha": "^11",
64
+ "eslint-plugin-vitest": "^0.5.4",
72
65
  "mock-stdin": "^1.0.0",
73
66
  "nock": "^14.0.11",
74
- "sinon": "^20.0.0",
75
- "sinon-chai": "^4.0.1",
76
67
  "tmp": "^0.2.5",
77
68
  "tsx": "^4.21.0",
78
- "typescript": "^5.4.0"
69
+ "typescript": "^5.4.0",
70
+ "vitest": "^4.1.6"
79
71
  },
80
72
  "dependencies": {
81
- "@heroku-cli/command": "^12.2.0",
73
+ "@heroku-cli/command": "12.4.0-beta.1",
82
74
  "@heroku/http-call": "^5.5.0",
83
75
  "@oclif/core": "^4.3.0",
84
76
  "@oclif/table": "0.5.2",
@@ -100,9 +92,7 @@
100
92
  "lint": "eslint .",
101
93
  "lint:fix": "eslint --fix",
102
94
  "prepare": "npm run build",
103
- "test": "npm run build && c8 --all --check-coverage --reporter=lcov --reporter=text-summary mocha --forbid-only \"test/**/*.test.ts\""
104
- },
105
- "overrides": {
106
- "serialize-javascript": "^7.0.3"
95
+ "test": "vitest run",
96
+ "test:coverage": "vitest run --coverage"
107
97
  }
108
98
  }