package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "npm-packlist",
  3. "version": "9.0.0",
  4. "description": "Get a list of the files to add from a folder into an npm package",
  5. "directories": {
  6. "test": "test"
  7. },
  8. "main": "lib/index.js",
  9. "dependencies": {
  10. "ignore-walk": "^7.0.0"
  11. },
  12. "author": "GitHub Inc.",
  13. "license": "ISC",
  14. "files": [
  15. "bin/",
  16. "lib/"
  17. ],
  18. "devDependencies": {
  19. "@npmcli/arborist": "^7.5.4",
  20. "@npmcli/eslint-config": "^4.0.0",
  21. "@npmcli/template-oss": "4.23.3",
  22. "mutate-fs": "^2.1.1",
  23. "tap": "^16.0.1"
  24. },
  25. "scripts": {
  26. "test": "tap",
  27. "posttest": "npm run lint",
  28. "snap": "tap",
  29. "postsnap": "npm run lintfix --",
  30. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
  31. "lint": "npm run eslint",
  32. "lintfix": "npm run eslint -- --fix",
  33. "npmclilint": "npmcli-lint",
  34. "postlint": "template-oss-check",
  35. "template-oss-apply": "template-oss-apply --force"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "git+https://github.com/npm/npm-packlist.git"
  40. },
  41. "tap": {
  42. "test-env": [
  43. "LC_ALL=sk"
  44. ],
  45. "nyc-arg": [
  46. "--exclude",
  47. "tap-snapshots/**"
  48. ],
  49. "files": [
  50. "test/*.js"
  51. ]
  52. },
  53. "engines": {
  54. "node": "^18.17.0 || >=20.5.0"
  55. },
  56. "templateOSS": {
  57. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  58. "version": "4.23.3",
  59. "publish": true
  60. }
  61. }