package.json 881 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@pkgjs/parseargs",
  3. "version": "0.11.0",
  4. "description": "Polyfill of future proposal for `util.parseArgs()`",
  5. "engines": {
  6. "node": ">=14"
  7. },
  8. "main": "index.js",
  9. "exports": {
  10. ".": "./index.js",
  11. "./package.json": "./package.json"
  12. },
  13. "scripts": {
  14. "coverage": "c8 --check-coverage tape 'test/*.js'",
  15. "test": "c8 tape 'test/*.js'",
  16. "posttest": "eslint .",
  17. "fix": "npm run posttest -- --fix"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git@github.com:pkgjs/parseargs.git"
  22. },
  23. "keywords": [],
  24. "author": "",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/pkgjs/parseargs/issues"
  28. },
  29. "homepage": "https://github.com/pkgjs/parseargs#readme",
  30. "devDependencies": {
  31. "c8": "^7.10.0",
  32. "eslint": "^8.2.0",
  33. "eslint-plugin-node-core": "iansu/eslint-plugin-node-core",
  34. "tape": "^5.2.2"
  35. }
  36. }