package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "liftoff",
  3. "version": "3.1.0",
  4. "description": "Launch your command line tool with ease.",
  5. "author": "Tyler Kellen (http://goingslowly.com/)",
  6. "contributors": [],
  7. "repository": "js-cli/js-liftoff",
  8. "license": "MIT",
  9. "engines": {
  10. "node": ">= 0.8"
  11. },
  12. "main": "index.js",
  13. "files": [
  14. "index.js",
  15. "lib",
  16. "LICENSE"
  17. ],
  18. "scripts": {
  19. "pretest": "eslint .",
  20. "test": "mocha -t 5000 -b -R spec test/index && npm run legacy-test",
  21. "legacy-test": "mocha -t 5000 -b -R spec test/launch",
  22. "cover": "nyc --reporter=lcov --reporter=text-summary npm test"
  23. },
  24. "dependencies": {
  25. "extend": "^3.0.0",
  26. "findup-sync": "^3.0.0",
  27. "fined": "^1.0.1",
  28. "flagged-respawn": "^1.0.0",
  29. "is-plain-object": "^2.0.4",
  30. "object.map": "^1.0.0",
  31. "rechoir": "^0.6.2",
  32. "resolve": "^1.1.7"
  33. },
  34. "devDependencies": {
  35. "chai": "^3.5.0",
  36. "coffeescript": "^1.10.0",
  37. "eslint": "^2.13.1",
  38. "eslint-config-gulp": "^3.0.1",
  39. "mocha": "^3.5.3",
  40. "nyc": "^13.3.0",
  41. "sinon": "~1.17.4"
  42. },
  43. "keywords": [
  44. "command line"
  45. ]
  46. }