package.json 654 B

12345678910111213141516171819202122232425262728
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "touch",
  4. "description": "like touch(1) in node",
  5. "version": "3.1.0",
  6. "repository": "git://github.com/isaacs/node-touch.git",
  7. "bin": {
  8. "nodetouch": "./bin/nodetouch.js"
  9. },
  10. "dependencies": {
  11. "nopt": "~1.0.10"
  12. },
  13. "license": "ISC",
  14. "scripts": {
  15. "test": "tap test/*.js --100 -J",
  16. "preversion": "npm test",
  17. "postversion": "npm publish",
  18. "postpublish": "git push origin --all; git push origin --tags"
  19. },
  20. "devDependencies": {
  21. "mutate-fs": "^1.1.0",
  22. "tap": "^10.7.0"
  23. },
  24. "files": [
  25. "index.js",
  26. "bin/nodetouch.js"
  27. ]
  28. }