package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "_from": "microcli@1.3.3",
  3. "_id": "microcli@1.3.3",
  4. "_inBundle": false,
  5. "_integrity": "sha1-J/GzMLD5Nb5jFPKYlyEFoyX3Mec=",
  6. "_location": "/microcli",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "version",
  10. "registry": true,
  11. "raw": "microcli@1.3.3",
  12. "name": "microcli",
  13. "escapedName": "microcli",
  14. "rawSpec": "1.3.3",
  15. "saveSpec": null,
  16. "fetchSpec": "1.3.3"
  17. },
  18. "_requiredBy": [
  19. "/runjs"
  20. ],
  21. "_resolved": "https://registry.npm.taobao.org/microcli/download/microcli-1.3.3.tgz",
  22. "_shasum": "27f1b330b0f935be6314f298972105a325f731e7",
  23. "_spec": "microcli@1.3.3",
  24. "_where": "D:\\bomanss\\ruoyi-ui\\node_modules\\runjs",
  25. "author": {
  26. "name": "Pawel Galazka"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/pawelgalazka/microcli/issues"
  30. },
  31. "bundleDependencies": false,
  32. "dependencies": {
  33. "lodash": "4.17.11",
  34. "microargs": "1.1.2"
  35. },
  36. "deprecated": "This project has been renamed to @pawelgalazka/cli . Install using @pawelgalazka/cli instead",
  37. "description": "CLI scripts micro engine",
  38. "devDependencies": {
  39. "@types/dedent": "0.7.0",
  40. "@types/jest": "23.3.12",
  41. "@types/lodash": "4.14.120",
  42. "@types/node": "10.12.18",
  43. "dedent": "0.7.0",
  44. "husky": "1.3.1",
  45. "jest": "23.6.0",
  46. "lint-staged": "8.1.0",
  47. "prettier": "1.15.3",
  48. "ts-jest": "23.10.5",
  49. "tslint": "5.12.1",
  50. "tslint-config-prettier": "1.17.0",
  51. "tslint-plugin-prettier": "2.0.1",
  52. "typescript": "3.2.2"
  53. },
  54. "engines": {
  55. "node": ">=6.16.0"
  56. },
  57. "homepage": "https://github.com/pawelgalazka/microcli#readme",
  58. "keywords": [
  59. "cli",
  60. "option",
  61. "parser",
  62. "command",
  63. "commander"
  64. ],
  65. "license": "MIT",
  66. "lint-staged": {
  67. "src/*.{ts,tsx}": [
  68. "tslint --fix",
  69. "git add",
  70. "jest --bail --findRelatedTests"
  71. ]
  72. },
  73. "main": "./lib/index.js",
  74. "name": "microcli",
  75. "repository": {
  76. "type": "git",
  77. "url": "git+https://github.com/pawelgalazka/microcli.git"
  78. },
  79. "scripts": {
  80. "build": "tsc",
  81. "lint": "tslint -c tslint.json 'src/*.ts'",
  82. "test": "yarn run lint && yarn run test:unit && yarn build && yarn run test:e2e",
  83. "test:e2e": "jest ./src/index.e2e.spec.ts",
  84. "test:unit": "jest ./src/index.spec.ts"
  85. },
  86. "types": "./lib/index.d.ts",
  87. "version": "1.3.3"
  88. }