package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "shell-quote",
  3. "description": "quote and parse shell commands",
  4. "version": "1.7.4",
  5. "author": {
  6. "name": "James Halliday",
  7. "email": "mail@substack.net",
  8. "url": "http://substack.net"
  9. },
  10. "funding": {
  11. "url": "https://github.com/sponsors/ljharb"
  12. },
  13. "bugs": "https://github.com/ljharb/shell-quote/issues",
  14. "devDependencies": {
  15. "@ljharb/eslint-config": "^21.0.0",
  16. "aud": "^2.0.1",
  17. "auto-changelog": "^2.4.0",
  18. "eslint": "=8.8.0",
  19. "in-publish": "^2.0.1",
  20. "npmignore": "^0.3.0",
  21. "safe-publish-latest": "^2.0.0",
  22. "tape": "^5.6.1"
  23. },
  24. "homepage": "https://github.com/ljharb/shell-quote",
  25. "keywords": [
  26. "command",
  27. "parse",
  28. "quote",
  29. "shell"
  30. ],
  31. "license": "MIT",
  32. "main": "index.js",
  33. "repository": {
  34. "type": "git",
  35. "url": "http://github.com/ljharb/shell-quote.git"
  36. },
  37. "scripts": {
  38. "prepack": "npmignore --auto --commentLines=autogenerated",
  39. "prepublish": "not-in-publish || npm run prepublishOnly",
  40. "prepublishOnly": "safe-publish-latest",
  41. "lint": "eslint --ext=js,mjs .",
  42. "pretest": "npm run lint",
  43. "tests-only": "tape 'test/**/*.js'",
  44. "test": "npm run tests-only",
  45. "posttest": "aud --production",
  46. "version": "auto-changelog && git add CHANGELOG.md",
  47. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  48. },
  49. "auto-changelog": {
  50. "output": "CHANGELOG.md",
  51. "template": "keepachangelog",
  52. "unreleased": false,
  53. "commitLimit": false,
  54. "backfillLimit": false,
  55. "hideCredit": true,
  56. "startingVersion": "1.7.4"
  57. },
  58. "publishConfig": {
  59. "ignore": [
  60. ".github/workflows"
  61. ]
  62. }
  63. }