heroku 10.1.0-beta.0 → 10.1.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,7 @@
1
1
  {
2
2
  "name": "heroku",
3
3
  "description": "CLI to interact with Heroku",
4
- "version": "10.1.0-beta.0",
4
+ "version": "10.1.0",
5
5
  "author": "Heroku",
6
6
  "bin": "./bin/run",
7
7
  "bugs": "https://github.com/heroku/cli/issues",
@@ -46,7 +46,7 @@
46
46
  "execa": "5.1.1",
47
47
  "filesize": "^10.1.2",
48
48
  "foreman": "^3.0.1",
49
- "fs-extra": "^9.1",
49
+ "fs-extra": "^11.3.0",
50
50
  "github-url-to-object": "^4.0.4",
51
51
  "glob": "^10.3.10",
52
52
  "got": "^11.8.6",
@@ -82,25 +82,27 @@
82
82
  },
83
83
  "devDependencies": {
84
84
  "@heroku-cli/schema": "^1.0.25",
85
+ "@istanbuljs/nyc-config-typescript": "^1.0.2",
85
86
  "@oclif/test": "^2.3.28",
86
87
  "@types/ansi-styles": "^3.2.1",
87
88
  "@types/bytes": "^3.1.4",
88
89
  "@types/chai": "^4.3.14",
89
90
  "@types/chai-as-promised": "^7.1.8",
90
91
  "@types/debug": "^4.1.2",
91
- "@types/fs-extra": "^7.0.0",
92
+ "@types/fs-extra": "^11.0.4",
92
93
  "@types/glob": "^7.1.1",
93
94
  "@types/inquirer": "^8.2.10",
94
95
  "@types/lodash": "^4.14.123",
95
- "@types/mocha": "^10.0.6",
96
+ "@types/mocha": "^10.0.10",
96
97
  "@types/node": "20.14.8",
97
- "@types/node-fetch": "^2.1.6",
98
+ "@types/node-fetch": "^2.6.11",
98
99
  "@types/phoenix": "^1.4.0",
99
100
  "@types/proxyquire": "^1.3.28",
100
101
  "@types/psl": "^1.1.3",
101
102
  "@types/redis-parser": "^3.0.3",
102
103
  "@types/shell-escape": "^0.2.0",
103
104
  "@types/shell-quote": "^1.7.5",
105
+ "@types/sinon": "^17.0.3",
104
106
  "@types/ssh2": "^1.15.0",
105
107
  "@types/std-mocks": "^1.0.4",
106
108
  "@types/strftime": "^0.9.8",
@@ -117,7 +119,7 @@
117
119
  "globby": "^10.0.2",
118
120
  "lodash": "^4.17.11",
119
121
  "lolex": "^3.1.0",
120
- "mocha": "^9.2.2",
122
+ "mocha": "^10.8.2",
121
123
  "nock": "^13.5.1",
122
124
  "nyc": "^15.1.0",
123
125
  "oclif": "4.14.36",
@@ -125,11 +127,12 @@
125
127
  "qqjs": "0.3.11",
126
128
  "read-pkg": "^4.0.1",
127
129
  "rimraf": "5.0.5",
128
- "sinon": "^7.2.4",
130
+ "sinon": "^19.0.2",
131
+ "source-map-support": "^0.5.21",
129
132
  "std-mocks": "^2.0.0",
130
133
  "strip-ansi": "6.0.1",
131
134
  "tmp": "^0.2.3",
132
- "ts-node": "^10.9.1",
135
+ "ts-node": "^10.9.2",
133
136
  "typescript": "4.8.4"
134
137
  },
135
138
  "engines": {
@@ -377,6 +380,9 @@
377
380
  "build": "rm -rf lib && tsc",
378
381
  "build:dev": "rm -rf lib && tsc --sourcemap",
379
382
  "lint": "eslint . --ext .ts --config ../../.eslintrc --ignore-path ../../.eslintignore-lib",
383
+ "coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
384
+ "coverage:html": "nyc --reporter=html --reporter=text-summary npm run test",
385
+ "coverage:check": "nyc --check-coverage --branches 80 --statements 80 --functions 80 --lines 80 npm run test",
380
386
  "postpublish": "rm -f oclif.manifest.json",
381
387
  "prepack": "yarn run build && oclif manifest",
382
388
  "pretest": "tsc -p test --noEmit && cd ../.. && yarn build",
@@ -384,11 +390,11 @@
384
390
  "test:integration": "yarn pretest && mocha --forbid-only \"test/**/*.integration.test.ts\"",
385
391
  "test:smoke": "yarn pretest && mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
386
392
  "test:unit:justTest:local": "nyc mocha \"test/**/*.unit.test.ts\"",
387
- "test:unit:justTest:ci": "nyc mocha --forbid-only \"test/**/*.unit.test.ts\"",
393
+ "test:unit:justTest:ci": "nyc --reporter=lcov --reporter=text-summary mocha --forbid-only \"test/**/*.unit.test.ts\"",
388
394
  "test": "yarn pretest && yarn test:unit:justTest:ci",
389
395
  "test:local": "yarn pretest && yarn test:unit:justTest:local",
390
396
  "version": "oclif readme --multi && git add README.md ../../docs"
391
397
  },
392
398
  "types": "lib/index.d.ts",
393
- "gitHead": "bfb87461ae78095d0e540e99db5357ec91d59aae"
399
+ "gitHead": "f1a505c072862fb093ddbb0c88836da936758036"
394
400
  }