package.json 463 B

12345678910111213141516171819202122
  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": "1.0.0",
  6. "repository": "git://github.com/isaacs/node-touch.git",
  7. "main": "touch.js",
  8. "engines": {
  9. "node": ">=0.6"
  10. },
  11. "bin": "./bin/touch.js",
  12. "dependencies": {
  13. "nopt": "~1.0.10"
  14. },
  15. "license": "ISC",
  16. "scripts": {
  17. "test": "tap test/*.js"
  18. },
  19. "devDependencies": {
  20. "tap": "^1.3.1"
  21. }
  22. }