package.json 1.4 KB

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