UNPKG

malloc

Version:

Simple malloc() & free() implementation on top of buffers and array buffers.

52 lines (51 loc) 1.81 kB
{ "name": "malloc", "version": "1.1.0", "description": "Simple malloc() & free() implementation on top of buffers and array buffers.", "main": "index.js", "directories": { "test": "test" }, "dependencies": {}, "devDependencies": { "babel-cli": "^6.4.0", "babel-core": "^6.4.0", "babel-plugin-contracts": "^1.1.1", "babel-plugin-trace": "^1.0.0", "babel-plugin-typecheck": "^3.6.1", "babel-polyfill": "^6.3.14", "babel-preset-es2015": "^6.3.13", "babel-preset-react": "^6.3.13", "babel-preset-stage-0": "^6.3.13", "flow-bin": "^0.21.0", "isparta": "^4.0.0", "mocha": "^2.3.3", "random-js": "^1.0.8", "should": "^7.1.1" }, "scripts": { "prepublish": "NODE_ENV=production npm run build && npm run test", "test": "flow && mocha --max-old-space-size=8192 --expose-gc", "watch": "mocha --watch --max-old-space-size=8192 --expose-gc", "build": "babel -d ./lib ./src", "perf": "rm *.cfg; NODE_ENV=production npm run build && node --max-inlined-source-size=2000 --print-opt-code --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm ./perf.js", "coverage": "NODE_ENV=coverage babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- --reporter dot --bail", "flow": "flow" }, "repository": { "type": "git", "url": "git+https://github.com/codemix/malloc.git" }, "keywords": [ "malloc", "buffer", "memory-management", "memory" ], "author": "Charles Pick <charles@codemix.com>", "license": "MIT", "bugs": { "url": "https://github.com/codemix/malloc/issues" }, "homepage": "https://github.com/codemix/malloc#readme" }