package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "common-bin",
  3. "version": "2.9.2",
  4. "description": "Abstraction bin tool",
  5. "main": "index.js",
  6. "dependencies": {
  7. "@types/dargs": "^5.1.0",
  8. "@types/node": "^10.12.18",
  9. "@types/yargs": "^12.0.4",
  10. "chalk": "^2.4.1",
  11. "change-case": "^3.0.2",
  12. "co": "^4.6.0",
  13. "dargs": "^6.0.0",
  14. "debug": "^4.1.0",
  15. "is-type-of": "^1.2.1",
  16. "semver": "^5.5.1",
  17. "yargs": "^13.3.0",
  18. "yargs-parser": "^13.1.2"
  19. },
  20. "devDependencies": {
  21. "autod": "^3.0.1",
  22. "coffee": "^5.1.0",
  23. "egg-bin": "^4.17.0",
  24. "egg-ci": "^1.19.0",
  25. "eslint": "^5.6.1",
  26. "eslint-config-egg": "^7.1.0",
  27. "mm": "^2.4.1",
  28. "rimraf": "^2.6.2",
  29. "typescript": "^3.2.2"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/node-modules/common-bin.git"
  34. },
  35. "homepage": "https://github.com/node-modules/common-bin",
  36. "author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
  37. "license": "MIT",
  38. "scripts": {
  39. "autod": "autod",
  40. "clean": "rimraf coverage",
  41. "lint": "eslint .",
  42. "test": "npm run lint -- --fix && npm run test-local",
  43. "test-local": "egg-bin test",
  44. "cov": "egg-bin cov",
  45. "ci": "npm run clean && npm run lint && egg-bin cov"
  46. },
  47. "engines": {
  48. "node": ">= 6.0.0"
  49. },
  50. "files": [
  51. "lib",
  52. "index.d.ts",
  53. "index.js"
  54. ],
  55. "types": "index.d.ts",
  56. "ci": {
  57. "version": "8, 10, 12, 14, 16",
  58. "type": "github",
  59. "license": {
  60. "year": "2017",
  61. "fullname": "node-modules and other contributors"
  62. }
  63. }
  64. }