UNPKG

streamsplit

Version:

Memory/CPU efficient stream splitter by token

62 lines (61 loc) 1.54 kB
{ "name": "streamsplit", "version": "2.0.0", "description": "Memory/CPU efficient stream splitter by token", "main": "index.js", "scripts": { "mocha-test": "mocha --compilers js:babel-core/register 'test/**/*.js'", "test": "npm run lint && npm run mocha-test", "prepublish": "gulp", "lint": "eslint src/", "coverage": "nyc --reporter=html npm test", "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" }, "keywords": [ "stream", "Rx", "Reactive", "split", "boyer-moore", "boyer-moore-horspool", "horspool" ], "repository": { "type": "git", "url": "https://github.com/vekexasia/streamsplit.git" }, "bugs": { "url": "https://github.com/vekexasia/streamsplit/issues" }, "author": "Andrea Baccega", "license": "MIT", "devDependencies": { "babel-core": "^6.4.0", "babel-plugin-add-module-exports": "^0.1.2", "babel-preset-es2015": "^6.3.13", "babel-preset-stage-0": "^6.3.13", "chai": "^3.5.0", "commander": "^2.9.0", "coveralls": "^2.11.8", "eslint": "^1.10.3", "eslint-config-airbnb": "^4.0.0", "gulp": "^3.9.0", "gulp-babel": "^6.1.0", "isparta": "^4.0.0", "mocha": "^2.3.3", "moment": "^2.12.0", "nyc": "^6.0.0", "sinon": "^1.17.3", "stream-buffer": "^1.0.0", "stream-buffers": "^3.0.0" }, "dependencies": { "extend": "^3.0.0", "long": "^3.2.0", "rxjs": "^5.4.0", "streamsearch": "^0.1.2" }, "engines": { "node": ">=0.12" } }