package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "npm-package-arg",
  3. "version": "8.1.5",
  4. "description": "Parse the things that can be arguments to `npm install`",
  5. "main": "npa.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "files": [
  10. "npa.js"
  11. ],
  12. "dependencies": {
  13. "hosted-git-info": "^4.0.1",
  14. "semver": "^7.3.4",
  15. "validate-npm-package-name": "^3.0.0"
  16. },
  17. "devDependencies": {
  18. "@npmcli/lint": "^1.0.1",
  19. "tap": "^15.0.9"
  20. },
  21. "scripts": {
  22. "preversion": "npm test",
  23. "postversion": "npm publish",
  24. "prepublishOnly": "git push origin --follow-tags",
  25. "test": "tap",
  26. "snap": "tap",
  27. "npmclilint": "npmcli-lint",
  28. "lint": "npm run npmclilint -- \"*.*js\" \"test/**/*.*js\"",
  29. "lintfix": "npm run lint -- --fix",
  30. "posttest": "npm run lint --",
  31. "postsnap": "npm run lintfix --"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/npm/npm-package-arg"
  36. },
  37. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  38. "license": "ISC",
  39. "bugs": {
  40. "url": "https://github.com/npm/npm-package-arg/issues"
  41. },
  42. "homepage": "https://github.com/npm/npm-package-arg",
  43. "engines": {
  44. "node": ">=10"
  45. }
  46. }