-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
87 lines (87 loc) · 2.35 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
83
84
85
86
87
{
"name": "@heroku-cli/command",
"description": "base class for Heroku CLI commands",
"version": "11.4.0",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-command/issues",
"dependencies": {
"@heroku-cli/color": "^2.0.1",
"@heroku/http-call": "^5.4.0",
"@oclif/core": "^2.16.0",
"cli-ux": "^6.0.9",
"debug": "^4.4.0",
"fs-extra": "^9.1.0",
"heroku-client": "^3.1.0",
"netrc-parser": "^3.1.6",
"open": "^8.4.2",
"uuid": "^8.3.0",
"yargs-parser": "^18.1.3",
"yargs-unparser": "^2.0.0"
},
"devDependencies": {
"@heroku-cli/schema": "^1.0.25",
"@types/ansi-styles": "^3.2.1",
"@types/chai": "^4.3.16",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.6",
"@types/nock": "^9.3.1",
"@types/node": "^18.11.9",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^10.0.13",
"@types/supports-color": "^5.3.0",
"@types/uuid": "^8.3.0",
"@types/yargs-parser": "^21.0.3",
"@types/yargs-unparser": "^2.0.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"chai": "^4.4.1",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.3",
"fancy-test": "^2.0.42",
"mocha": "^10.7.3",
"nock": "^10.0.6",
"np": "^7.7.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.2",
"stdout-stderr": "^0.1.13",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"engines": {
"node": ">= 16.20.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/heroku/heroku-cli-command",
"keywords": [
"heroku"
],
"license": "ISC",
"main": "lib/index.js",
"repository": "heroku/heroku-cli-command",
"mocha": {
"require": [
"test/helpers/init.js",
"ts-node/register",
"source-map-support/register"
],
"watch-extensions": "ts",
"recursive": true,
"reporter": "spec",
"timeout": 360000
},
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "tsc -p test --noEmit && eslint . --ext .ts",
"posttest": "yarn run lint",
"prepublishOnly": "yarn run build",
"test": "mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "./lib/index.d.ts"
}