blow-collection
Version:
Simple in memory collection with Rx / Observable interface.
44 lines (43 loc) • 1.49 kB
JSON
{
"name": "blow-collection",
"version": "0.1.16",
"description": "Simple in memory collection with Rx / Observable interface.",
"main": "lib/blow-collection.js",
"scripts": {
"lint": "tslint -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts",
"pretest": "npm run build && tsc test/*.ts --module commonjs --target ES6",
"test": "mocha --harmony_default_parameters --harmony_destructuring",
"coverage": "npm run pretest && ./node_modules/.bin/istanbul cover _mocha --harmony_default_parameters --harmony_destructuring && npm run posttest",
"coverage:open": "open coverage/lcov-report/index.html",
"posttest": "find ./test -name '*.js' -type f -delete && find ./src -name '*.js' -type f -delete",
"dev:start": "npm run build && node --harmony_default_parameters --harmony_destructuring ./lib/blow-storage-service.js",
"dev": "nodemon .",
"build": "tsc",
"clean": "rm -rf ./lib"
},
"keywords": [
"rx",
"observable",
"collection",
"blow",
"typescript"
],
"author": "Maciej Chmielarski <m.chmielarski@gmail.com>",
"license": "MIT",
"typings": "lib/blow-collection.d.ts",
"dependencies": {
"blow-filters": "^0.1.1",
"blow-query": "^0.1.11",
"node-uuid": "^1.4.7",
"rxjs": "5.0.0-beta.1"
},
"devDependencies": {
"chai": "^3.4.1",
"istanbul": "^0.4.2",
"mocha": "^2.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mchmielarski/blow-collection"
}
}