package.json 641 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "cmd-shim",
  3. "version": "3.0.3",
  4. "description": "Used in npm for command line application support",
  5. "scripts": {
  6. "test": "tap test/*.js --100",
  7. "snap": "TAP_SNAPSHOT=1 tap test/*.js --100",
  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. "graceful-fs": "^4.1.2",
  19. "mkdirp": "~0.5.0"
  20. },
  21. "devDependencies": {
  22. "rimraf": "~2.2.8",
  23. "tap": "^12.7.0"
  24. },
  25. "files": [
  26. "index.js",
  27. "lib"
  28. ]
  29. }