UNPKG

2.66 kBJSONView Raw
1{
2 "name": "cli-engine-command",
3 "description": "base CLI command for cli-engine",
4 "version": "8.0.13",
5 "author": "Jeff Dickey @dickeyxxx",
6 "bugs": "https://github.com/heroku/cli-engine-command/issues",
7 "dependencies": {
8 "@heroku/linewrap": "^1.0.0",
9 "ansi-escapes": "^3.0.0",
10 "cardinal": "1.x",
11 "chalk": "^1.0.0",
12 "cli-ux": "^1.0.0",
13 "fs-extra": "^4.0.1",
14 "http-call": "^3.0.2",
15 "lodash.ary": "^4.1.1",
16 "lodash.defaults": "^4.2.0",
17 "lodash.get": "^4.4.2",
18 "lodash.identity": "^3.0.0",
19 "lodash.keys": "^4.2.0",
20 "lodash.maxby": "4.x",
21 "lodash.merge": "4.x",
22 "lodash.partial": "^4.2.1",
23 "lodash.property": "^4.4.2",
24 "lodash.result": "^4.5.2",
25 "moment": "^2.18.1",
26 "string": "3.x",
27 "supports-color": "^4.4.0"
28 },
29 "devDependencies": {
30 "babel-cli": "^6.26.0",
31 "babel-eslint": "7.2.3",
32 "babel-jest": "^21.0.0",
33 "babel-plugin-syntax-object-rest-spread": "^6.13.0",
34 "babel-plugin-transform-class-properties": "6.24.1",
35 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
36 "babel-plugin-transform-flow-strip-types": "6.22.0",
37 "cli-engine-config": "^3.1.6",
38 "eslint": "^4.6.1",
39 "eslint-config-standard": "10.2.1",
40 "eslint-plugin-flowtype": "^2.35.1",
41 "eslint-plugin-import": "^2.7.0",
42 "eslint-plugin-jest": "^21.0.0",
43 "eslint-plugin-node": "^5.1.0",
44 "eslint-plugin-promise": "3.5.0",
45 "eslint-plugin-standard": "3.0.1",
46 "flow-bin": "^0.54.1",
47 "flow-copy-source": "^1.2.1",
48 "flow-typed": "^2.1.5",
49 "husky": "^0.14.3",
50 "jest": "^21.0.1",
51 "jest-junit": "^3.0.0",
52 "lint-staged": "^4.1.3",
53 "nock": "^9.0.14",
54 "nodemon": "^1.12.0",
55 "rimraf": "2.6.1",
56 "std-mocks": "1.0.1"
57 },
58 "engines": {
59 "node": ">=7.6.0"
60 },
61 "files": [
62 "lib"
63 ],
64 "homepage": "https://github.com/heroku/cli-engine-command",
65 "jest": {
66 "testEnvironment": "node",
67 "rootDir": "./src",
68 "setupFiles": [
69 "../test/init.js"
70 ]
71 },
72 "keywords": [
73 "heroku",
74 "heroku-cli-plugin"
75 ],
76 "license": "ISC",
77 "lint-staged": {
78 "src/**/*.js": "eslint"
79 },
80 "main": "lib/index.js",
81 "peerDependencies": {
82 "cli-engine-config": "^3.0.0"
83 },
84 "repository": "heroku/cli-engine-command",
85 "scripts": {
86 "build": "babel src -d lib --ignore '*.test.js'",
87 "clean": "rimraf lib",
88 "copy-flow": "flow-copy-source -v -i '**/*.test.js' src lib",
89 "precommit": "lint-staged",
90 "prepare": "npm run clean && npm run build && npm run copy-flow",
91 "test": "jest && flow && eslint .",
92 "watch": "nodemon -e js -i lib --exec \"npm run prepare\""
93 }
94}