package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "qiniu",
  3. "version": "7.15.1",
  4. "description": "Node wrapper for Qiniu Resource (Cloud) Storage API",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "check-type": "tsc --noEmit",
  11. "test": "NODE_ENV=test mocha -t 300000 --retries 3",
  12. "cover": "nyc npm run test",
  13. "report": "nyc report --reporter=html",
  14. "lint": "eslint ."
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/qiniu/nodejs-sdk.git"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/qiniu/nodejs-sdk/issues"
  22. },
  23. "keywords": [
  24. "cloud",
  25. "storage",
  26. "s3",
  27. "qiniu",
  28. "web-service"
  29. ],
  30. "author": "sdk@qiniu.com",
  31. "contributors": [
  32. {
  33. "name": "Xu Shiwei",
  34. "email": "xushiweizh@gmail.com"
  35. },
  36. {
  37. "name": "why404",
  38. "email": "awhy.xu@gmail.com"
  39. },
  40. {
  41. "name": "guhao",
  42. "email": "guhao@qiniu.com"
  43. },
  44. {
  45. "name": "jinxinxin",
  46. "email": "jinxinxin@qiniu.com"
  47. }
  48. ],
  49. "engines": {
  50. "node": ">= 6"
  51. },
  52. "dependencies": {
  53. "agentkeepalive": "^4.0.2",
  54. "before": "^0.0.1",
  55. "block-stream2": "^2.0.0",
  56. "crc32": "^0.2.2",
  57. "destroy": "^1.0.4",
  58. "encodeurl": "^1.0.1",
  59. "formstream": "^1.1.0",
  60. "mime": "^2.4.4",
  61. "mkdirp": "^0.5.5",
  62. "mockdate": "^3.0.5",
  63. "tunnel-agent": "^0.6.0",
  64. "typescript": "^4.9.4",
  65. "urllib": "^2.41.0"
  66. },
  67. "devDependencies": {
  68. "@types/node": "^8.0.3",
  69. "eslint": "^6.5.1",
  70. "eslint-config-standard": "^14.1.0",
  71. "eslint-plugin-import": "^2.11.0",
  72. "eslint-plugin-node": "^10.0.0",
  73. "eslint-plugin-promise": "^4.2.1",
  74. "eslint-plugin-standard": "^4.0.1",
  75. "mocha": "^6.2.1",
  76. "nyc": "^14.1.1",
  77. "should": "^13.2.3"
  78. },
  79. "license": "MIT"
  80. }