package.json 928 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "microargs",
  3. "version": "1.1.0",
  4. "description": "CLI arguments micro parser",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "yarn run test:lint && yarn run test:unit",
  8. "test:lint": "eslint *.js",
  9. "test:unit": "jest"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/pawelgalazka/microargs.git"
  14. },
  15. "keywords": [
  16. "argv",
  17. "getopt",
  18. "parser",
  19. "minimist"
  20. ],
  21. "author": "Pawel Galazka",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/pawelgalazka/microargs/issues"
  25. },
  26. "engines": {
  27. "node": ">=6.11.1"
  28. },
  29. "homepage": "https://github.com/pawelgalazka/microargs#readme",
  30. "devDependencies": {
  31. "eslint": "4.9.0",
  32. "eslint-config-standard": "10.2.1",
  33. "eslint-plugin-import": "2.8.0",
  34. "eslint-plugin-node": "5.2.0",
  35. "eslint-plugin-promise": "3.6.0",
  36. "eslint-plugin-standard": "3.0.1",
  37. "jest": "21.2.1"
  38. }
  39. }