-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.17 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
{
"name": "@heroku-cli/plugin-pipelines",
"version": "7.53.0",
"author": "James Martinez @jmar910",
"bugs": "https://github.com/heroku/cli/issues",
"dependencies": {
"@heroku-cli/color": "^1.1.14",
"@heroku-cli/command": "^8.4.1",
"@heroku-cli/schema": "^1.0.25",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1.3.4",
"cli-ux": "^5.5.1",
"heroku-cli-util": "^8.0.11",
"http-call": "^5.2.4",
"inquirer": "^7.0.0",
"lodash.keyby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"node-fetch": "^2.6.1",
"validator": "^10.11.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/got": "^9.6.7",
"@types/lodash.keyby": "^4.6.6",
"@types/lodash.sortby": "^4.7.6",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"debug": "^4.1.1",
"eslint": "^6.7.2",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"globby": "^8",
"mocha": "^5",
"nock": "^10.0.6",
"nyc": "^13",
"sinon": "^7.4.1",
"ts-node": "^8",
"tslib": "^1",
"typescript": "3.7.5"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/lib",
"/oclif.manifest.json",
"/yarn.lock"
],
"homepage": "https://github.com/heroku/cli",
"keywords": [
"heroku-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "heroku",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"pipelines": {
"description": "manage pipelines"
},
"reviewapps": {
"description": "manage reviewapps in pipelines"
}
}
},
"repository": "heroku/cli",
"scripts": {
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"pretest": "tsc -p test --noEmit",
"test": "nyc --extension .ts mocha \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"version": "oclif-dev readme && git add README.md"
},
"gitHead": "f862d38090921d6f0f48d915a5c13129bfee75b6"
}