package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "microargs",
  3. "version": "1.1.2",
  4. "description": "CLI arguments micro parser",
  5. "main": "./lib/index.js",
  6. "types": "./lib/index.d.ts",
  7. "scripts": {
  8. "build": "tsc",
  9. "test": "yarn lint && jest --coverage",
  10. "lint": "tslint -c tslint.json 'src/*.ts'",
  11. "test:unit": "jest"
  12. },
  13. "lint-staged": {
  14. "src/*.{ts,tsx}": [
  15. "tslint --fix",
  16. "git add",
  17. "jest --bail --findRelatedTests"
  18. ]
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/pawelgalazka/microargs.git"
  23. },
  24. "keywords": [
  25. "argv",
  26. "getopt",
  27. "parser",
  28. "minimist"
  29. ],
  30. "author": "Pawel Galazka",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/pawelgalazka/microargs/issues"
  34. },
  35. "engines": {
  36. "node": ">=6.16.0"
  37. },
  38. "homepage": "https://github.com/pawelgalazka/microargs#readme",
  39. "devDependencies": {
  40. "@types/jest": "23.3.12",
  41. "husky": "1.3.1",
  42. "jest": "23.6.0",
  43. "lint-staged": "8.1.0",
  44. "prettier": "1.15.3",
  45. "ts-jest": "23.10.5",
  46. "tslint": "5.12.1",
  47. "tslint-config-prettier": "1.17.0",
  48. "tslint-plugin-prettier": "2.0.1",
  49. "typescript": "3.2.2"
  50. }
  51. }