package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "mz-modules",
  3. "version": "2.1.0",
  4. "description": "modernize node.js modules to current ECMAScript standards",
  5. "dependencies": {
  6. "glob": "^7.1.2",
  7. "ko-sleep": "^1.0.3",
  8. "mkdirp": "^0.5.1",
  9. "pump": "^3.0.0",
  10. "rimraf": "^2.6.1"
  11. },
  12. "devDependencies": {
  13. "autod": "^2.9.0",
  14. "egg-bin": "^4.1.0",
  15. "egg-ci": "^1.8.0",
  16. "eslint": "^4.5.0",
  17. "eslint-config-egg": "^5.0.0",
  18. "mm": "^2.1.0",
  19. "mz": "^2.6.0",
  20. "stat-mode": "^0.2.2",
  21. "supertest": "^3.0.0",
  22. "webstorm-disable-index": "^1.2.0"
  23. },
  24. "engines": {
  25. "node": ">=6.0.0"
  26. },
  27. "scripts": {
  28. "autod": "autod",
  29. "lint": "eslint .",
  30. "dev": "egg-bin dev",
  31. "test": "npm run lint -- --fix && npm run test-local",
  32. "test-local": "egg-bin test",
  33. "cov": "egg-bin cov",
  34. "ci": "npm run lint && npm run cov"
  35. },
  36. "files": [
  37. "lib",
  38. "index.js",
  39. "glob.js",
  40. "mkdirp.js",
  41. "rimraf.js",
  42. "setImmediate.js",
  43. "nextTick.js",
  44. "sleep.js",
  45. "pump.js"
  46. ],
  47. "ci": {
  48. "version": "6, 8"
  49. },
  50. "repository": {
  51. "type": "git",
  52. "url": "git@github.com:node-modules/mz-modules.git"
  53. },
  54. "author": "popomore <sakura9515@gmail.com>",
  55. "license": "MIT"
  56. }