UNPKG

async-array-buffer

Version:

This module allows to allocate and deallocate ArrayBuffers without blocking the main thread.

92 lines (91 loc) 3.5 kB
{ "author": "Christoph Guttandin", "bugs": { "url": "https://github.com/chrisguttandin/async-array-buffer/issues" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "dependencies": { "@babel/runtime": "^7.24.7", "async-array-buffer-broker": "^4.0.79", "async-array-buffer-worker": "^6.0.79", "tslib": "^2.6.3" }, "description": "This module allows to allocate and deallocate ArrayBuffers without blocking the main thread.", "devDependencies": { "@babel/cli": "^7.24.7", "@babel/core": "^7.24.7", "@babel/plugin-external-helpers": "^7.24.7", "@babel/plugin-transform-runtime": "^7.24.7", "@babel/preset-env": "^7.24.7", "@babel/register": "^7.24.6", "@commitlint/cli": "^19.3.0", "@commitlint/config-angular": "^19.3.0", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-replace": "^5.0.7", "babel-loader": "^9.1.3", "chai": "^4.3.10", "commitizen": "^4.3.0", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.56.0", "eslint-config-holy-grail": "^59.0.10", "grunt": "^1.6.1", "grunt-cli": "^1.4.3", "grunt-sh": "^0.2.1", "husky": "^8.0.3", "karma": "^6.4.3", "karma-chrome-launcher": "^3.2.0", "karma-firefox-launcher": "^2.1.3", "karma-mocha": "^2.0.1", "karma-sauce-launcher": "^4.3.6", "karma-sinon-chai": "^2.0.2", "karma-webkit-launcher": "^2.4.0", "karma-webpack": "^5.0.1", "lint-staged": "^15.2.5", "load-grunt-config": "^4.0.1", "memfs": "^4.9.2", "mocha": "^10.4.0", "prettier": "^3.3.1", "rimraf": "^5.0.7", "rollup": "^4.18.0", "sinon": "^17.0.1", "sinon-chai": "^3.7.0", "terser-webpack-plugin": "^5.3.10", "ts-loader": "^9.5.1", "tsconfig-holy-grail": "^15.0.1", "tslint": "^6.1.3", "tslint-config-holy-grail": "^56.0.1", "typescript": "^5.4.5", "webpack": "^5.91.0", "webpack-cli": "^5.1.4" }, "files": [ "build/es2019/", "build/es5/", "src/" ], "homepage": "https://github.com/chrisguttandin/async-array-buffer", "license": "MIT", "main": "build/es5/bundle.js", "module": "build/es2019/module.js", "name": "async-array-buffer", "repository": { "type": "git", "url": "https://github.com/chrisguttandin/async-array-buffer.git" }, "scripts": { "build": "rimraf build/* && webpack --config config/webpack/worker-es2019.js && tsc --project src/tsconfig.json && rollup --config config/rollup/bundle.mjs && babel ./build/es2019 --config-file ./config/babel/build.json --out-dir ./build/node", "lint": "npm run lint:config && npm run lint:src && npm run lint:test", "lint:config": "eslint --config config/eslint/config.json --ext .js --report-unused-disable-directives config/", "lint:src": "tslint --config config/tslint/src.json --project src/tsconfig.json src/*.ts src/**/*.ts", "lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/", "prepare": "husky install", "prepublishOnly": "npm run build", "test": "grunt lint && grunt test" }, "types": "build/es2019/module.d.ts", "version": "4.0.86" }