package.json
1 { 2 "name": "buffer", 3 "description": "Node.js Buffer API, for the browser", 4 "version": "5.7.1", 5 "author": { 6 "name": "Feross Aboukhadijeh", 7 "email": "feross@feross.org", 8 "url": "https://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.3.1", 19 "ieee754": "^1.1.13" 20 }, 21 "devDependencies": { 22 "airtap": "^3.0.0", 23 "benchmark": "^2.1.4", 24 "browserify": "^17.0.0", 25 "concat-stream": "^2.0.0", 26 "hyperquest": "^2.1.3", 27 "is-buffer": "^2.0.4", 28 "is-nan": "^1.3.0", 29 "split": "^1.0.1", 30 "standard": "*", 31 "tape": "^5.0.1", 32 "through2": "^4.0.2", 33 "uglify-js": "^3.11.3" 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 "types": "index.d.ts", 55 "repository": { 56 "type": "git", 57 "url": "git://github.com/feross/buffer.git" 58 }, 59 "scripts": { 60 "perf": "browserify --debug perf/bracket-notation.js > perf/bundle.js && open perf/index.html", 61 "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", 62 "size": "browserify -r ./ | uglifyjs -c -m | gzip | wc -c", 63 "test": "standard && node ./bin/test.js", 64 "test-browser-es5": "airtap -- test/*.js", 65 "test-browser-es5-local": "airtap --local -- test/*.js", 66 "test-browser-es6": "airtap -- test/*.js test/node/*.js", 67 "test-browser-es6-local": "airtap --local -- test/*.js test/node/*.js", 68 "test-node": "tape test/*.js test/node/*.js", 69 "update-authors": "./bin/update-authors.sh" 70 }, 71 "standard": { 72 "ignore": [ 73 "test/node/**/*.js", 74 "test/common.js", 75 "test/_polyfill.js", 76 "perf/**/*.js" 77 ], 78 "globals": [ 79 "SharedArrayBuffer" 80 ] 81 }, 82 "funding": [ 83 { 84 "type": "github", 85 "url": "https://github.com/sponsors/feross" 86 }, 87 { 88 "type": "patreon", 89 "url": "https://www.patreon.com/feross" 90 }, 91 { 92 "type": "consulting", 93 "url": "https://feross.org/support" 94 } 95 ] 96 }