package.json 2.7 KB

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