-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
70 lines (70 loc) · 1.43 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
{
"name": "@heroku/heroku-cli-util",
"description": "Set of helpful CLI utilities",
"version": "8.0.15",
"author": "Heroku",
"bugs": {
"url": "https://github.com/heroku/heroku-cli-util/issues"
},
"dependencies": {
"@heroku-cli/color": "^1.1.3",
"ansi-escapes": "^3.1.0",
"ansi-styles": "^3.2.1",
"cardinal": "^2.0.1",
"chalk": "^2.4.1",
"got": "^11.8.6",
"heroku-client": "^3.1.0",
"lodash": "^4.17.21",
"netrc-parser": "^3.1.6",
"opn": "^3.0.3",
"strip-ansi": "^4.0.0",
"supports-color": "^9.4.0",
"tslib": "^1.9.0",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"chai": "^4.1.2",
"co": "^4.6.0",
"hook-std": "^2.0.0",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"nock": "^13.5.6",
"nyc": "^17.1.0",
"proxyquire": "^1.8.0",
"sinon": "^18.0.0",
"standard": "^17.1.2",
"tmp": "^0.0.33",
"unexpected": "^13.2.1"
},
"engines": {
"node": ">= 16"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/heroku/heroku-cli-util",
"license": "ISC",
"main": "index.js",
"mocha": {
"require": [
"./test/init"
]
},
"nyc": {
"exclude": [
"lib/linewrap.js"
]
},
"repository": "heroku/heroku-cli-util",
"scripts": {
"test": "nyc mocha",
"posttest": "standard"
},
"standard": {
"env": "mocha",
"ignore": [
"lib/linewrap.js"
]
}
}