package.json 1.9 KB

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