package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "microcli",
  3. "version": "1.3.1",
  4. "description": "CLI scripts micro engine",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "yarn run test:lint && yarn run test:unit && yarn run test:e2e",
  8. "test:lint": "eslint *.js",
  9. "test:unit": "jest ./test/index.spec.js",
  10. "test:e2e": "jest ./test/index.e2e.spec.js",
  11. "precommit": "yarn run test:lint"
  12. },
  13. "engines": {
  14. "node": ">=6.11.1"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/pawelgalazka/microcli.git"
  19. },
  20. "keywords": [
  21. "cli",
  22. "option",
  23. "parser",
  24. "command",
  25. "commander"
  26. ],
  27. "author": "Pawel Galazka",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/pawelgalazka/microcli/issues"
  31. },
  32. "homepage": "https://github.com/pawelgalazka/microcli#readme",
  33. "dependencies": {
  34. "lodash": "4.17.4",
  35. "microargs": "1.1.0"
  36. },
  37. "devDependencies": {
  38. "dedent": "^0.7.0",
  39. "eslint": "4.9.0",
  40. "eslint-config-standard": "10.2.1",
  41. "eslint-plugin-import": "2.8.0",
  42. "eslint-plugin-node": "5.2.0",
  43. "eslint-plugin-promise": "3.6.0",
  44. "eslint-plugin-standard": "3.0.1",
  45. "husky": "0.14.3",
  46. "jest": "21.2.1"
  47. },
  48. "jest": {
  49. "testEnvironment": "node"
  50. }
  51. }