UNPKG

2.15 kBJSONView Raw
1{
2 "name": "cli-engine-command",
3 "description": "base CLI command for cli-engine",
4 "version": "8.0.17",
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": "^2.1.0",
12 "cli-ux": "^1.1.10",
13 "fs-extra": "^4.0.2",
14 "http-call": "^3.0.2",
15 "lodash.maxby": "^4.6.0",
16 "moment": "^2.18.1",
17 "string": "3.x",
18 "supports-color": "^4.4.0"
19 },
20 "devDependencies": {
21 "babel-cli": "^6.26.0",
22 "babel-jest": "^21.2.0",
23 "babel-plugin-syntax-object-rest-spread": "^6.13.0",
24 "babel-plugin-transform-class-properties": "6.24.1",
25 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
26 "babel-plugin-transform-flow-strip-types": "6.22.0",
27 "cli-engine-config": "^3.3.1",
28 "flow-bin": "^0.55.0",
29 "flow-copy-source": "^1.2.1",
30 "flow-typed": "^2.1.5",
31 "husky": "^0.14.3",
32 "jest": "^21.2.0",
33 "jest-junit": "^3.0.0",
34 "lint-staged": "^4.2.3",
35 "nock": "^9.0.21",
36 "nodemon": "^1.12.1",
37 "prettier": "^1.7.0",
38 "rimraf": "2.6.2",
39 "std-mocks": "1.0.1"
40 },
41 "engines": {
42 "node": ">=7.6.0"
43 },
44 "files": [
45 "lib"
46 ],
47 "homepage": "https://github.com/heroku/cli-engine-command",
48 "jest": {
49 "testEnvironment": "node",
50 "setupFiles": [
51 "./test/init.js"
52 ]
53 },
54 "keywords": [
55 "heroku",
56 "heroku-cli-plugin"
57 ],
58 "license": "ISC",
59 "lint-staged": {
60 "src/**/*.js": [
61 "prettier --write",
62 "git add"
63 ]
64 },
65 "main": "lib/index.js",
66 "peerDependencies": {
67 "cli-engine-config": "^3.0.0"
68 },
69 "repository": "heroku/cli-engine-command",
70 "scripts": {
71 "build": "babel src -d lib --ignore '*.test.js'",
72 "clean": "rimraf lib",
73 "copy-flow": "flow-copy-source -v -i '**/*.test.js' src lib",
74 "posttest": "prettier -l 'src/**/*.js' && flow",
75 "precommit": "lint-staged",
76 "prepare": "npm run clean && npm run build && npm run copy-flow",
77 "test": "jest",
78 "watch": "nodemon -e js -i lib --exec \"npm run prepare\""
79 }
80}