-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 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
{
"name": "@heroku-cli/test-utils",
"version": "0.2.0",
"description": "Test utilities for Heroku CLI",
"author": "Heroku",
"license": "ISC",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/heroku/heroku-cli-test-utils"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./eslint-config": {
"types": "./dist/eslint-config.d.ts",
"default": "./dist/eslint-config.js"
}
},
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/eslint": "^9.6.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.3",
"@types/sinon": "^21.0.1",
"c8": "^11.0.0",
"mocha": "^11.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"chai": ">=5",
"eslint": "^9",
"eslint-config-oclif": "^6",
"nock": ">=14",
"sinon": ">=20"
},
"dependencies": {
"@heroku-cli/command": "^12",
"@oclif/core": "^4",
"ansis": "^4"
},
"overrides": {
"serialize-javascript": "^7.0.5"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "npm run build",
"test": "npm run build && c8 --check-coverage mocha --forbid-only \"test/**/*.test.ts\""
}
}