package.json 786 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "isexe",
  3. "version": "2.0.0",
  4. "description": "Minimal module to check if a file is executable.",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "devDependencies": {
  10. "mkdirp": "^0.5.1",
  11. "rimraf": "^2.5.0",
  12. "tap": "^10.3.0"
  13. },
  14. "scripts": {
  15. "test": "tap test/*.js --100",
  16. "preversion": "npm test",
  17. "postversion": "npm publish",
  18. "postpublish": "git push origin --all; git push origin --tags"
  19. },
  20. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  21. "license": "ISC",
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/isaacs/isexe.git"
  25. },
  26. "keywords": [],
  27. "bugs": {
  28. "url": "https://github.com/isaacs/isexe/issues"
  29. },
  30. "homepage": "https://github.com/isaacs/isexe#readme"
  31. }