package.json 1.3 KB
Newer Older
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
{
  "name": "inquirer",
  "version": "7.1.0",
  "description": "A collection of common interactive command line user interfaces.",
  "author": "Simon Boudrias <admin@simonboudrias.com>",
  "files": [
    "lib",
    "README.md"
  ],
  "main": "lib/inquirer.js",
  "keywords": [
    "command",
    "prompt",
    "stdin",
    "cli",
    "tty",
    "menu"
  ],
  "engines": {
    "node": ">=6.0.0"
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "chalk-pipe": "^3.0.0",
    "cmdify": "^0.0.4",
    "mocha": "^7.1.0",
    "mockery": "^2.1.0",
    "nyc": "^15.0.0",
    "sinon": "^9.0.0"
  },
  "scripts": {
    "test": "nyc mocha test/**/* -r ./test/before",
    "posttest": "nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov",
    "prepublishOnly": "cp ../../README.md .",
    "postpublish": "rm -f README.md"
  },
  "repository": "SBoudrias/Inquirer.js",
  "license": "MIT",
  "dependencies": {
    "ansi-escapes": "^4.2.1",
    "chalk": "^3.0.0",
    "cli-cursor": "^3.1.0",
    "cli-width": "^2.0.0",
    "external-editor": "^3.0.3",
    "figures": "^3.0.0",
    "lodash": "^4.17.15",
    "mute-stream": "0.0.8",
    "run-async": "^2.4.0",
    "rxjs": "^6.5.3",
    "string-width": "^4.1.0",
    "strip-ansi": "^6.0.0",
    "through": "^2.3.6"
  },
  "gitHead": "cdce9828f5f27b89e5743b1826876b9042db410a"
}