package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "minimist",
  3. "version": "1.2.8",
  4. "description": "parse argument options",
  5. "main": "index.js",
  6. "devDependencies": {
  7. "@ljharb/eslint-config": "^21.0.1",
  8. "aud": "^2.0.2",
  9. "auto-changelog": "^2.4.0",
  10. "eslint": "=8.8.0",
  11. "in-publish": "^2.0.1",
  12. "npmignore": "^0.3.0",
  13. "nyc": "^10.3.2",
  14. "safe-publish-latest": "^2.0.0",
  15. "tape": "^5.6.3"
  16. },
  17. "scripts": {
  18. "prepack": "npmignore --auto --commentLines=auto",
  19. "prepublishOnly": "safe-publish-latest",
  20. "prepublish": "not-in-publish || npm run prepublishOnly",
  21. "lint": "eslint --ext=js,mjs .",
  22. "pretest": "npm run lint",
  23. "tests-only": "nyc tape 'test/**/*.js'",
  24. "test": "npm run tests-only",
  25. "posttest": "aud --production",
  26. "version": "auto-changelog && git add CHANGELOG.md",
  27. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  28. },
  29. "testling": {
  30. "files": "test/*.js",
  31. "browsers": [
  32. "ie/6..latest",
  33. "ff/5",
  34. "firefox/latest",
  35. "chrome/10",
  36. "chrome/latest",
  37. "safari/5.1",
  38. "safari/latest",
  39. "opera/12"
  40. ]
  41. },
  42. "repository": {
  43. "type": "git",
  44. "url": "git://github.com/minimistjs/minimist.git"
  45. },
  46. "homepage": "https://github.com/minimistjs/minimist",
  47. "keywords": [
  48. "argv",
  49. "getopt",
  50. "parser",
  51. "optimist"
  52. ],
  53. "author": {
  54. "name": "James Halliday",
  55. "email": "mail@substack.net",
  56. "url": "http://substack.net"
  57. },
  58. "funding": {
  59. "url": "https://github.com/sponsors/ljharb"
  60. },
  61. "license": "MIT",
  62. "auto-changelog": {
  63. "output": "CHANGELOG.md",
  64. "template": "keepachangelog",
  65. "unreleased": false,
  66. "commitLimit": false,
  67. "backfillLimit": false,
  68. "hideCredit": true
  69. },
  70. "publishConfig": {
  71. "ignore": [
  72. ".github/workflows"
  73. ]
  74. }
  75. }