package.json 729 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "cmd-shim",
  3. "version": "4.1.0",
  4. "description": "Used in npm for command line application support",
  5. "scripts": {
  6. "test": "tap",
  7. "snap": "tap",
  8. "preversion": "npm test",
  9. "postversion": "npm publish",
  10. "postpublish": "git push origin --follow-tags"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/npm/cmd-shim.git"
  15. },
  16. "license": "ISC",
  17. "dependencies": {
  18. "mkdirp-infer-owner": "^2.0.0"
  19. },
  20. "devDependencies": {
  21. "rimraf": "~2.2.8",
  22. "tap": "^14.10.6"
  23. },
  24. "files": [
  25. "index.js",
  26. "lib"
  27. ],
  28. "tap": {
  29. "before": "test/00-setup.js",
  30. "after": "test/zz-cleanup.js",
  31. "check-coverage": true
  32. },
  33. "engines": {
  34. "node": ">=10"
  35. }
  36. }