-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 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
65
66
67
68
69
{
"name": "cli-engine-example",
"description": "example CLI for use with cli-engine",
"version": "1.4.2",
"author": "Jeff Dickey @dickeyxxx",
"bin": {
"cli-engine-example": "bin/run"
},
"bugs": "https://github.com/heroku/cli-engine-example/issues",
"cli-engine": {
"bin": "cli-engine",
"dirname": "cli-engine",
"commands": "./lib/commands",
"userPluginsEnabled": true,
"npmRegistry": "https://cli-npm.heroku.com",
"topics": {
"cli": {
"description": "example topic description"
}
},
"hooks": {
"init": "./lib/hooks/init"
},
"s3": {
"host": "cli-assets.heroku.com"
},
"corePlugins": [
"cli-engine-example-plugin"
]
},
"dependencies": {
"@cli-engine/command": "^12.0.3",
"@cli-engine/config": "^5.0.11",
"@cli-engine/engine": "^6.1.12",
"cli-engine-example-plugin": "^3.0.8",
"cli-flags": "^2.0.7",
"cli-ux": "^2.0.21",
"debug": "^3.1.0"
},
"devDependencies": {
"@cli-engine/util": "^1.0.10",
"@heroku-cli/tslint": "^1.0.3",
"@types/ansi-styles": "^2.0.30",
"@types/debug": "^0.0.30",
"@types/jest": "^22.0.0",
"@types/node": "8.5.2",
"jest": "22.0.4",
"prettier": "^1.9.2",
"ts-jest": "^22.0.0",
"tslint": "^5.8.0",
"typescript": "2.6.2"
},
"files": [
"bin",
"lib"
],
"homepage": "https://github.com/heroku/cli-engine-example",
"keywords": [
"cli-engine-example"
],
"license": "ISC",
"repository": "https://github.com/heroku/cli-engine-example",
"scripts": {
"posttest": "cli-engine-util",
"precommit": "cli-engine-util",
"prepare": "cli-engine-util",
"test": "jest"
}
}