package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "npm-packlist",
  3. "version": "7.0.4",
  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": "^6.0.0"
  11. },
  12. "author": "GitHub Inc.",
  13. "license": "ISC",
  14. "files": [
  15. "bin/",
  16. "lib/"
  17. ],
  18. "devDependencies": {
  19. "@npmcli/arborist": "^6.0.0 || ^6.0.0-pre.0",
  20. "@npmcli/eslint-config": "^4.0.0",
  21. "@npmcli/template-oss": "4.10.0",
  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",
  31. "lint": "eslint \"**/*.js\"",
  32. "lintfix": "npm run lint -- --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": "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": "^14.17.0 || ^16.13.0 || >=18.0.0"
  55. },
  56. "templateOSS": {
  57. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  58. "version": "4.10.0"
  59. }
  60. }