package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "npm-packlist",
  3. "version": "2.2.2",
  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": "index.js",
  9. "dependencies": {
  10. "glob": "^7.1.6",
  11. "ignore-walk": "^3.0.3",
  12. "npm-bundled": "^1.1.1",
  13. "npm-normalize-package-bin": "^1.0.1"
  14. },
  15. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  16. "license": "ISC",
  17. "files": [
  18. "bin/index.js",
  19. "index.js"
  20. ],
  21. "devDependencies": {
  22. "eslint": "^7.25.0",
  23. "eslint-plugin-import": "^2.22.1",
  24. "eslint-plugin-node": "^11.1.0",
  25. "eslint-plugin-promise": "^5.1.0",
  26. "eslint-plugin-standard": "^5.0.0",
  27. "mutate-fs": "^2.1.1",
  28. "tap": "^15.0.6"
  29. },
  30. "scripts": {
  31. "test": "tap",
  32. "posttest": "npm run lint",
  33. "snap": "tap",
  34. "postsnap": "npm run lintfix",
  35. "preversion": "npm test",
  36. "postversion": "npm publish",
  37. "prepublishOnly": "git push origin --follow-tags",
  38. "eslint": "eslint",
  39. "lint": "npm run eslint -- index.js bin/index.js \"test/**/*.js\"",
  40. "lintfix": "npm run lint -- --fix"
  41. },
  42. "repository": {
  43. "type": "git",
  44. "url": "git+https://github.com/npm/npm-packlist.git"
  45. },
  46. "tap": {
  47. "test-env": [
  48. "LC_ALL=sk"
  49. ],
  50. "check-coverage": true,
  51. "nyc-arg": [
  52. "--include=index.js",
  53. "--include=bin/index.js"
  54. ]
  55. },
  56. "bin": {
  57. "npm-packlist": "bin/index.js"
  58. },
  59. "engines": {
  60. "node": ">=10"
  61. }
  62. }