package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "shell-quote",
  3. "description": "quote and parse shell commands",
  4. "version": "1.8.2",
  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.1.1",
  16. "auto-changelog": "^2.5.0",
  17. "encoding": "^0.1.13",
  18. "eslint": "=8.8.0",
  19. "evalmd": "^0.0.19",
  20. "in-publish": "^2.0.1",
  21. "jackspeak": "=2.1.1",
  22. "npmignore": "^0.3.1",
  23. "nyc": "^10.3.2",
  24. "safe-publish-latest": "^2.0.0",
  25. "tape": "^5.9.0"
  26. },
  27. "homepage": "https://github.com/ljharb/shell-quote",
  28. "keywords": [
  29. "command",
  30. "parse",
  31. "quote",
  32. "shell"
  33. ],
  34. "license": "MIT",
  35. "main": "index.js",
  36. "repository": {
  37. "type": "git",
  38. "url": "http://github.com/ljharb/shell-quote.git"
  39. },
  40. "scripts": {
  41. "prepack": "npmignore --auto --commentLines=autogenerated",
  42. "prepublish": "not-in-publish || npm run prepublishOnly",
  43. "prepublishOnly": "safe-publish-latest",
  44. "prelint": "evalmd README.md",
  45. "lint": "eslint --ext=js,mjs .",
  46. "pretest": "npm run lint",
  47. "tests-only": "nyc tape 'test/**/*.js'",
  48. "test": "npm run tests-only",
  49. "posttest": "npx npm@'>=10.2' audit --production",
  50. "version": "auto-changelog && git add CHANGELOG.md",
  51. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  52. },
  53. "auto-changelog": {
  54. "output": "CHANGELOG.md",
  55. "template": "keepachangelog",
  56. "unreleased": false,
  57. "commitLimit": false,
  58. "backfillLimit": false,
  59. "hideCredit": true,
  60. "startingVersion": "1.7.4"
  61. },
  62. "publishConfig": {
  63. "ignore": [
  64. ".github/workflows",
  65. "example",
  66. "CHANGELOG.md"
  67. ]
  68. },
  69. "engines": {
  70. "node": ">= 0.4"
  71. }
  72. }