UNPKG

1.92 kBJSONView Raw
1{
2 "name": "@anycli/plugin-legacy",
3 "description": "converts older style plugins to be compatible with anycli",
4 "version": "0.1.0",
5 "author": "Jeff Dickey @jdxcode",
6 "anycli": {
7 "commands": "./lib/commands",
8 "hooks": {
9 "init": "./lib/hooks/init"
10 },
11 "devPlugins": [
12 "@anycli/plugin-help",
13 "heroku-status"
14 ]
15 },
16 "bugs": "https://github.com/anycli/plugin-legacy/issues",
17 "dependencies": {
18 "@anycli/command": "^1.2.14",
19 "@heroku-cli/color": "^1.1.3",
20 "@heroku-cli/command": "^8.0.0-anycli.1",
21 "ansi-escapes": "^3.0.0",
22 "debug": "^3.1.0",
23 "semver": "^5.5.0"
24 },
25 "devDependencies": {
26 "@anycli/config": "^1.3.35",
27 "@anycli/dev-cli": "^0.3.6",
28 "@anycli/errors": "^0.2.1",
29 "@anycli/plugin-help": "^0.6.9",
30 "@anycli/test": "^0.10.13",
31 "@anycli/tslint": "^0.2.7",
32 "@types/chai": "^4.1.2",
33 "@types/mocha": "^2.2.48",
34 "@types/node": "^9.4.1",
35 "@types/semver": "^5.5.0",
36 "@types/supports-color": "^3.1.0",
37 "chai": "^4.1.2",
38 "concurrently": "^3.5.1",
39 "globby": "^7.1.1",
40 "heroku-apps": "^2.4.22",
41 "heroku-status": "^3.0.10",
42 "mocha": "^5.0.0",
43 "ts-node": "^4.1.0",
44 "typescript": "^2.7.1"
45 },
46 "engines": {
47 "node": ">=8.0.0"
48 },
49 "files": [
50 ".anycli.manifest.json",
51 "/lib"
52 ],
53 "homepage": "https://github.com/anycli/plugin-legacy",
54 "keywords": [
55 "anycli-plugin"
56 ],
57 "license": "MIT",
58 "main": "lib/index.js",
59 "repository": "anycli/plugin-legacy",
60 "scripts": {
61 "build": "rm -rf lib && tsc",
62 "lint": "concurrently -p command \"tsc -p test --noEmit\" \"tslint -p test -t stylish\"",
63 "postpublish": "rm .anycli.manifest.json",
64 "posttest": "yarn run lint",
65 "prepublishOnly": "yarn run build && anycli-dev manifest && anycli-dev readme",
66 "test": "mocha --forbid-only \"test/**/*.test.ts\""
67 },
68 "types": "lib/index.d.ts"
69}