package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "npm-package-arg",
  3. "version": "10.1.0",
  4. "description": "Parse the things that can be arguments to `npm install`",
  5. "main": "./lib/npa.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "files": [
  10. "bin/",
  11. "lib/"
  12. ],
  13. "dependencies": {
  14. "hosted-git-info": "^6.0.0",
  15. "proc-log": "^3.0.0",
  16. "semver": "^7.3.5",
  17. "validate-npm-package-name": "^5.0.0"
  18. },
  19. "devDependencies": {
  20. "@npmcli/eslint-config": "^4.0.0",
  21. "@npmcli/template-oss": "4.10.0",
  22. "tap": "^16.0.1"
  23. },
  24. "scripts": {
  25. "test": "tap",
  26. "snap": "tap",
  27. "npmclilint": "npmcli-lint",
  28. "lint": "eslint \"**/*.js\"",
  29. "lintfix": "npm run lint -- --fix",
  30. "posttest": "npm run lint",
  31. "postsnap": "npm run lintfix --",
  32. "postlint": "template-oss-check",
  33. "template-oss-apply": "template-oss-apply --force"
  34. },
  35. "repository": {
  36. "type": "git",
  37. "url": "https://github.com/npm/npm-package-arg.git"
  38. },
  39. "author": "GitHub Inc.",
  40. "license": "ISC",
  41. "bugs": {
  42. "url": "https://github.com/npm/npm-package-arg/issues"
  43. },
  44. "homepage": "https://github.com/npm/npm-package-arg",
  45. "engines": {
  46. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  47. },
  48. "tap": {
  49. "branches": 97,
  50. "nyc-arg": [
  51. "--exclude",
  52. "tap-snapshots/**"
  53. ]
  54. },
  55. "templateOSS": {
  56. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  57. "version": "4.10.0"
  58. }
  59. }