package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "coffee",
  3. "version": "5.4.0",
  4. "description": "Test command line on Node.js.",
  5. "main": "index.js",
  6. "dependencies": {
  7. "cross-spawn": "^6.0.5",
  8. "debug": "^4.1.0",
  9. "is-type-of": "^1.2.1"
  10. },
  11. "devDependencies": {
  12. "@types/node": "^10.12.18",
  13. "autod": "^3.0.1",
  14. "egg-bin": "^4.8.1",
  15. "egg-ci": "^1.11.0",
  16. "eslint": "^5.10.0",
  17. "eslint-config-egg": "^7.1.0",
  18. "lodash.ismatch": "^4.4.0",
  19. "mm": "^2.4.1",
  20. "mocha": "^5.2.0",
  21. "mz-modules": "^2.1.0",
  22. "nyc": "^11.0.2",
  23. "spy": "^1.0.0",
  24. "typescript": "^3.2.2"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/node-modules/coffee.git"
  29. },
  30. "homepage": "https://github.com/node-modules/coffee",
  31. "author": "popomore <sakura9515@gmail.com>",
  32. "keywords": [
  33. "cli",
  34. "test",
  35. "shell",
  36. "spawn",
  37. "fork",
  38. "child_process",
  39. "exec"
  40. ],
  41. "license": "MIT",
  42. "engines": {
  43. "node": ">= 6.0.0"
  44. },
  45. "ci": {
  46. "version": "6, 8, 10, 12",
  47. "type": "travis, github"
  48. },
  49. "scripts": {
  50. "autod": "autod",
  51. "lint": "eslint .",
  52. "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
  53. "test-local": "egg-bin test",
  54. "cov": "egg-bin cov",
  55. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov"
  56. },
  57. "files": [
  58. "index.js",
  59. "index.d.ts",
  60. "lib"
  61. ]
  62. }