package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "stream-wormhole",
  3. "version": "1.1.0",
  4. "description": "Pipe ReadStream to a wormhole",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "test": "npm run lint && mocha test/*.test.js -r thunk-mocha",
  11. "test-cov": "istanbul cover _mocha -- test/*.test.js -r thunk-mocha",
  12. "lint": "eslint *.js test",
  13. "ci": "npm run lint && npm run test-cov"
  14. },
  15. "dependencies": {},
  16. "devDependencies": {
  17. "autod": "*",
  18. "egg-ci": "^1.0.2",
  19. "eslint": "3",
  20. "eslint-config-egg": "3",
  21. "istanbul": "*",
  22. "mocha": "*",
  23. "thunk-mocha": "^1.0.3"
  24. },
  25. "homepage": "https://github.com/node-modules/stream-wormhole",
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/node-modules/stream-wormhole.git",
  29. "web": "https://github.com/node-modules/stream-wormhole"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/node-modules/stream-wormhole/issues",
  33. "email": "m@fengmk2.com"
  34. },
  35. "keywords": [
  36. "stream-wormhole",
  37. "wormhole",
  38. "stream"
  39. ],
  40. "engines": {
  41. "node": ">=4.0.0"
  42. },
  43. "ci": {
  44. "version": "4, 6, 8, 10"
  45. },
  46. "author": "fengmk2 <m@fengmk2.com> (http://fengmk2.com)",
  47. "license": "MIT"
  48. }