설명 없음

package.json 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "liftoff",
  3. "version": "2.5.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. "test": "jshint lib index.js && jscs lib index.js && mocha -t 5000 -b -R spec test/index",
  20. "cover": "nyc --reporter=lcov --reporter=text-summary npm test"
  21. },
  22. "dependencies": {
  23. "extend": "^3.0.0",
  24. "findup-sync": "^2.0.0",
  25. "fined": "^1.0.1",
  26. "flagged-respawn": "^1.0.0",
  27. "is-plain-object": "^2.0.4",
  28. "object.map": "^1.0.0",
  29. "rechoir": "^0.6.2",
  30. "resolve": "^1.1.7"
  31. },
  32. "devDependencies": {
  33. "chai": "^3.5.0",
  34. "coffeescript": "^1.10.0",
  35. "jscs": "^3.0.7",
  36. "jshint": "^2.9.2",
  37. "mocha": "^3.5.3",
  38. "nyc": "^11.2.1",
  39. "sinon": "~1.17.4"
  40. },
  41. "keywords": [
  42. "command line"
  43. ]
  44. }