package.json 567 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "arg",
  3. "version": "4.1.3",
  4. "description": "Another simple argument parser",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "repository": "zeit/arg",
  8. "author": "Josh Junon <junon@zeit.co>",
  9. "license": "MIT",
  10. "files": [
  11. "index.js",
  12. "index.d.ts"
  13. ],
  14. "scripts": {
  15. "pretest": "xo",
  16. "test": "WARN_EXIT=1 jest --coverage -w 2"
  17. },
  18. "xo": {
  19. "rules": {
  20. "complexity": 0,
  21. "max-depth": 0,
  22. "no-div-regex": 0
  23. }
  24. },
  25. "devDependencies": {
  26. "chai": "^4.1.1",
  27. "jest": "^20.0.4",
  28. "xo": "^0.18.2"
  29. }
  30. }