package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "liftup",
  3. "version": "3.0.1",
  4. "description": "Launch your command line tool with ease.",
  5. "author": "Grunt Development Team (https://gruntjs.com/development-team)",
  6. "contributors": [],
  7. "repository": "gruntjs/js-liftup",
  8. "license": "MIT",
  9. "engines": {
  10. "node": ">=10"
  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",
  21. "cover": "nyc --reporter=lcov --reporter=text-summary npm test"
  22. },
  23. "dependencies": {
  24. "extend": "^3.0.2",
  25. "findup-sync": "^4.0.0",
  26. "fined": "^1.2.0",
  27. "flagged-respawn": "^1.0.1",
  28. "is-plain-object": "^2.0.4",
  29. "object.map": "^1.0.1",
  30. "rechoir": "^0.7.0",
  31. "resolve": "^1.19.0"
  32. },
  33. "devDependencies": {
  34. "chai": "^3.5.0",
  35. "coffeescript": "^1.10.0",
  36. "eslint": "^2.13.1",
  37. "eslint-config-gulp": "^3.0.1",
  38. "mocha": "^8.3.1",
  39. "nyc": "^14.1.1",
  40. "sinon": "~1.17.7"
  41. },
  42. "keywords": [
  43. "command line"
  44. ]
  45. }