package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "buffer",
  3. "description": "Node.js Buffer API, for the browser",
  4. "version": "4.9.2",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "http://feross.org"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/feross/buffer/issues"
  12. },
  13. "contributors": [
  14. "Romain Beauxis <toots@rastageeks.org>",
  15. "James Halliday <mail@substack.net>"
  16. ],
  17. "dependencies": {
  18. "base64-js": "^1.0.2",
  19. "ieee754": "^1.1.4",
  20. "isarray": "^1.0.0"
  21. },
  22. "devDependencies": {
  23. "benchmark": "^2.0.0",
  24. "browserify": "^13.0.0",
  25. "concat-stream": "^1.4.7",
  26. "hyperquest": "^2.0.0",
  27. "is-buffer": "^1.1.1",
  28. "is-nan": "^1.0.1",
  29. "split": "^1.0.0",
  30. "standard": "^7.0.0",
  31. "tape": "^4.0.0",
  32. "through2": "^2.0.0",
  33. "zuul": "^3.0.0"
  34. },
  35. "homepage": "https://github.com/feross/buffer",
  36. "jspm": {
  37. "map": {
  38. "./index.js": {
  39. "node": "@node/buffer"
  40. }
  41. }
  42. },
  43. "keywords": [
  44. "arraybuffer",
  45. "browser",
  46. "browserify",
  47. "buffer",
  48. "compatible",
  49. "dataview",
  50. "uint8array"
  51. ],
  52. "license": "MIT",
  53. "main": "index.js",
  54. "repository": {
  55. "type": "git",
  56. "url": "git://github.com/feross/buffer.git"
  57. },
  58. "scripts": {
  59. "perf": "browserify --debug perf/bracket-notation.js > perf/bundle.js && open perf/index.html",
  60. "perf-node": "node perf/bracket-notation.js && node perf/concat.js && node perf/copy-big.js && node perf/copy.js && node perf/new-big.js && node perf/new.js && node perf/readDoubleBE.js && node perf/readFloatBE.js && node perf/readUInt32LE.js && node perf/slice.js && node perf/writeFloatBE.js",
  61. "size": "browserify -r ./ | uglifyjs -c -m | gzip | wc -c",
  62. "test": "standard && node ./bin/test.js",
  63. "test-browser-es5": "zuul --ui tape -- test/*.js",
  64. "test-browser-es5-local": "zuul --ui tape --local -- test/*.js",
  65. "test-browser-es6": "zuul --ui tape -- test/*.js test/node/*.js",
  66. "test-browser-es6-local": "zuul --ui tape --local -- test/*.js test/node/*.js",
  67. "test-node": "tape test/*.js test/node/*.js && OBJECT_IMPL=true tape test/*.js",
  68. "update-authors": "./bin/update-authors.sh"
  69. },
  70. "standard": {
  71. "ignore": [
  72. "test/node/*.js",
  73. "test/_polyfill.js",
  74. "perf/*.js"
  75. ]
  76. }
  77. }