package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "npm-package-arg",
  3. "version": "12.0.2",
  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": "^8.0.0",
  15. "proc-log": "^5.0.0",
  16. "semver": "^7.3.5",
  17. "validate-npm-package-name": "^6.0.0"
  18. },
  19. "devDependencies": {
  20. "@npmcli/eslint-config": "^5.0.0",
  21. "@npmcli/template-oss": "4.23.5",
  22. "tap": "^16.0.1"
  23. },
  24. "scripts": {
  25. "test": "tap",
  26. "snap": "tap",
  27. "npmclilint": "npmcli-lint",
  28. "lint": "npm run eslint",
  29. "lintfix": "npm run eslint -- --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. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "git+https://github.com/npm/npm-package-arg.git"
  39. },
  40. "author": "GitHub Inc.",
  41. "license": "ISC",
  42. "bugs": {
  43. "url": "https://github.com/npm/npm-package-arg/issues"
  44. },
  45. "homepage": "https://github.com/npm/npm-package-arg",
  46. "engines": {
  47. "node": "^18.17.0 || >=20.5.0"
  48. },
  49. "tap": {
  50. "branches": 97,
  51. "nyc-arg": [
  52. "--exclude",
  53. "tap-snapshots/**"
  54. ]
  55. },
  56. "templateOSS": {
  57. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  58. "version": "4.23.5",
  59. "publish": true
  60. }
  61. }