package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "_from": "tarn@^1.1.5",
  3. "_id": "tarn@1.1.5",
  4. "_inBundle": false,
  5. "_integrity": "sha512-PMtJ3HCLAZeedWjJPgGnCvcphbCOMbtZpjKgLq3qM5Qq9aQud+XHrL0WlrlgnTyS8U+jrjGbEXprFcQrxPy52g==",
  6. "_location": "/tarn",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "tarn@^1.1.5",
  12. "name": "tarn",
  13. "escapedName": "tarn",
  14. "rawSpec": "^1.1.5",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.1.5"
  17. },
  18. "_requiredBy": [
  19. "/mssql"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/tarn/-/tarn-1.1.5.tgz",
  22. "_shasum": "7be88622e951738b9fa3fb77477309242cdddc2d",
  23. "_spec": "tarn@^1.1.5",
  24. "_where": "E:\\workspace\\node\\qipai_server\\node_modules\\mssql",
  25. "author": {
  26. "name": "Sami Koskimäki",
  27. "email": "sami.koskimaki@vincit.com",
  28. "url": "https://github.com/koskimas"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/vincit/tarn.js/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {},
  35. "deprecated": false,
  36. "description": "Simple and robust resource pool for node.js",
  37. "devDependencies": {
  38. "@types/node": "^10.5.2",
  39. "bluebird": "^3.5.3",
  40. "expect.js": "^0.3.1",
  41. "husky": "^1.3.1",
  42. "lint-staged": "^8.0.4",
  43. "mocha": "^5.2.0",
  44. "prettier": "^1.13.7",
  45. "typescript": "3.2.4"
  46. },
  47. "engines": {
  48. "node": ">=4.0.0"
  49. },
  50. "files": [
  51. "README.md",
  52. "LICENSE",
  53. "lib/*"
  54. ],
  55. "homepage": "https://github.com/vincit/tarn.js#readme",
  56. "husky": {
  57. "hooks": {
  58. "pre-commit": "lint-staged"
  59. }
  60. },
  61. "keywords": [
  62. "pool",
  63. "pooling",
  64. "throttle"
  65. ],
  66. "license": "MIT",
  67. "lint-staged": {
  68. "*.{js,ts}": [
  69. "prettier --write",
  70. "git add"
  71. ]
  72. },
  73. "main": "lib/tarn.js",
  74. "name": "tarn",
  75. "repository": {
  76. "type": "git",
  77. "url": "git://github.com/vincit/tarn.js.git"
  78. },
  79. "scripts": {
  80. "build": "tsc",
  81. "clean": "rm -rf lib",
  82. "format": "prettier **/*.{js,ts} --write",
  83. "prepublishOnly": "tsc",
  84. "test": "mocha --slow 10 --timeout 5000 --reporter spec tests.js",
  85. "test-bail": "mocha --slow 10 --timeout 5000 --reporter spec --bail tests.js"
  86. },
  87. "types": "lib/tarn.d.ts",
  88. "version": "1.1.5"
  89. }