package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "byte",
  3. "version": "2.0.0",
  4. "description": "Input Buffer and Output Buffer, just like Java ByteBuffer",
  5. "main": "lib/byte.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "autod": "autod",
  11. "lint": "eslint lib test *.js",
  12. "test": "npm run lint && egg-bin test",
  13. "test-local": "egg-bin test",
  14. "cov": "egg-bin cov",
  15. "pkgfiles": "egg-bin pkgfiles",
  16. "ci": "npm run autod -- --check && egg-bin pkgfiles --check && npm run lint && npm run cov",
  17. "contributors": "contributors -f plain -o AUTHORS",
  18. "optimized": "node --allow-natives-syntax --trace_opt --trace_deopt test/optimized.js"
  19. },
  20. "dependencies": {
  21. "debug": "^3.1.0",
  22. "long": "^4.0.0",
  23. "utility": "^1.13.1"
  24. },
  25. "devDependencies": {
  26. "autod": "^3.0.1",
  27. "beautify-benchmark": "^0.2.4",
  28. "benchmark": "^2.1.4",
  29. "egg-bin": "^4.7.0",
  30. "egg-ci": "^1.8.0",
  31. "eslint": "^4.19.1",
  32. "eslint-config-egg": "^7.0.0",
  33. "fastbench": "^1.0.1",
  34. "optimized": "^1.2.0"
  35. },
  36. "homepage": "https://github.com/node-modules/byte",
  37. "repository": {
  38. "type": "git",
  39. "url": "git://github.com/node-modules/byte.git",
  40. "web": "https://github.com/node-modules/byte"
  41. },
  42. "bugs": {
  43. "url": "https://github.com/node-modules/byte/issues",
  44. "email": "fengmk2@gmail.com"
  45. },
  46. "keywords": [
  47. "ByteBuffer",
  48. "byte",
  49. "bytes",
  50. "io",
  51. "buffer"
  52. ],
  53. "engines": {
  54. "node": ">= 8.0.0"
  55. },
  56. "ci": {
  57. "version": "8, 10"
  58. },
  59. "author": "fengmk2 <fengmk2@gmail.com> (http://fengmk2.com)",
  60. "license": "MIT"
  61. }