package.json 1.7 KB

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