package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "_from": "smart-buffer@^4.2.0",
  3. "_id": "smart-buffer@4.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
  6. "_location": "/smart-buffer",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "smart-buffer@^4.2.0",
  12. "name": "smart-buffer",
  13. "escapedName": "smart-buffer",
  14. "rawSpec": "^4.2.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^4.2.0"
  17. },
  18. "_requiredBy": [
  19. "/socks"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
  22. "_shasum": "6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae",
  23. "_spec": "smart-buffer@^4.2.0",
  24. "_where": "C:\\Users\\Admin\\Desktop\\WORK IT\\a-level proj\\chat\\server\\node_modules\\socks",
  25. "author": {
  26. "name": "Josh Glazebrook"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/JoshGlazebrook/smart-buffer/issues"
  30. },
  31. "bundleDependencies": false,
  32. "contributors": [
  33. {
  34. "name": "syvita"
  35. }
  36. ],
  37. "dependencies": {},
  38. "deprecated": false,
  39. "description": "smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.",
  40. "devDependencies": {
  41. "@types/chai": "4.1.7",
  42. "@types/mocha": "5.2.7",
  43. "@types/node": "^12.0.0",
  44. "chai": "4.2.0",
  45. "coveralls": "3.0.5",
  46. "istanbul": "^0.4.5",
  47. "mocha": "6.2.0",
  48. "mocha-lcov-reporter": "^1.3.0",
  49. "nyc": "14.1.1",
  50. "source-map-support": "0.5.12",
  51. "ts-node": "8.3.0",
  52. "tslint": "5.18.0",
  53. "typescript": "^3.2.1"
  54. },
  55. "engines": {
  56. "node": ">= 6.0.0",
  57. "npm": ">= 3.0.0"
  58. },
  59. "homepage": "https://github.com/JoshGlazebrook/smart-buffer/",
  60. "keywords": [
  61. "buffer",
  62. "smart",
  63. "packet",
  64. "serialize",
  65. "network",
  66. "cursor",
  67. "simple"
  68. ],
  69. "license": "MIT",
  70. "main": "build/smartbuffer.js",
  71. "name": "smart-buffer",
  72. "nyc": {
  73. "extension": [
  74. ".ts",
  75. ".tsx"
  76. ],
  77. "include": [
  78. "src/*.ts",
  79. "src/**/*.ts"
  80. ],
  81. "exclude": [
  82. "**.*.d.ts",
  83. "node_modules",
  84. "typings"
  85. ],
  86. "require": [
  87. "ts-node/register"
  88. ],
  89. "reporter": [
  90. "json",
  91. "html"
  92. ],
  93. "all": true
  94. },
  95. "repository": {
  96. "type": "git",
  97. "url": "git+https://github.com/JoshGlazebrook/smart-buffer.git"
  98. },
  99. "scripts": {
  100. "build": "tsc -p ./",
  101. "coverage": "NODE_ENV=test nyc npm test",
  102. "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls",
  103. "lint": "tslint --type-check --project tsconfig.json 'src/**/*.ts'",
  104. "prepublish": "npm install -g typescript && npm run build",
  105. "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts"
  106. },
  107. "typings": "typings/smartbuffer.d.ts",
  108. "version": "4.2.0"
  109. }