This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
92 lines (92 loc) · 2.31 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
88
89
90
91
92
{
"name": "@cli-engine/engine",
"description": "Generic CLI Framework",
"version": "6.3.3",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/heroku/cli-engine/issues",
"cli-engine": {
"bin": "cli-engine",
"dirname": "cli-engine",
"commands": "./lib/commands",
"topics": {
"plugins": {
"description": "add/remove CLI plugins"
}
}
},
"dependencies": {
"@cli-engine/command": "12.1.1",
"@cli-engine/config": "^5.1.0",
"@heroku-cli/color": "^1.1.1",
"@heroku-cli/command": "7.0.13",
"@types/load-json-file": "^2.0.7",
"assync": "^1.0.4",
"cli-ux": "^2.0.21",
"cross-spawn": "^5.1.0",
"debug": "^3.1.0",
"filesize": "^3.5.11",
"fs-extra": "^5.0.0",
"globby": "^7.1.1",
"graceful-fs": "^4.1.11",
"http-call": "^4.0.8",
"klaw": "^2.1.1",
"load-json-file": "^4.0.0",
"log-chopper": "^1.0.2",
"moment": "^2.20.1",
"rwlockfile": "^2.0.19",
"semver": "5.4.1",
"string-similarity": "^1.2.0",
"strip-ansi": "4.0.0",
"ts-lodash": "4.0.11",
"yarn": "^1.3.2"
},
"devDependencies": {
"@cli-engine/util": "^1.2.11",
"@heroku-cli/tslint": "^1.1.4",
"@types/ansi-styles": "^2.0.30",
"@types/chalk": "^2.2.0",
"@types/debug": "^0.0.30",
"@types/execa": "^0.8.1",
"@types/fs-extra": "5.0.0",
"@types/globby": "^6.1.0",
"@types/graceful-fs": "4.1.2",
"@types/jest": "22.0.1",
"@types/klaw": "2.1.1",
"@types/lodash": "4.14.92",
"@types/nock": "9.1.1",
"@types/node": "9.3.0",
"@types/semver": "5.4.0",
"@types/strip-ansi": "3.0.0",
"@types/supports-color": "3.1.0",
"execa": "^0.8.0",
"husky": "^0.14.3",
"jest": "^22.0.5",
"nock": "^9.1.6",
"prettier": "1.10.1",
"tar-fs": "^1.16.0",
"ts-jest": "^22.0.1",
"ts-node": "4.1.0",
"tslint": "^5.9.0",
"typescript": "2.6.2"
},
"engines": {
"node": ">= 6.0.0"
},
"enginestrict": true,
"files": [
"lib"
],
"homepage": "https://github.com/heroku/cli-engine",
"keywords": [
"cli"
],
"license": "ISC",
"main": "lib/cli.js",
"repository": "https://github.com/heroku/cli-engine",
"scripts": {
"precommit": "cli-engine-util",
"prepare": "cli-engine-util",
"test": "cli-engine-util --runInBand"
},
"types": "lib/cli.d.ts"
}