UNPKG

node-each

Version:

Node asynchronous for each that avoids blocking Node Event Loop

60 lines 1.53 kB
{ "name": "node-each", "description": "Node asynchronous for each that avoids blocking Node Event Loop", "main": "lib/index.js", "version": "1.0.1", "repository": { "type": "git", "url": "https://github.com/goncaloneves/node-each" }, "bugs": { "url": "https://github.com/goncaloneves/node-each/issues" }, "directories": { "lib": "lib", "test": "test" }, "scripts": { "commit": "git-cz", "check-coverage": "istanbul check-coverage --statements 100 --branches 90 --functions 100 --lines 100", "report-coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov", "test": "istanbul cover -x *test.js _mocha test/test.js", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "keywords": [ "node", "async", "for", "each", "no", "blocking", "event", "loop" ], "author": "Gonçalo Neves <me@goncaloneves.com>", "license": "MIT", "dependencies": { "bluebird": "2.10.2" }, "devDependencies": { "chai": "^3.4.0", "codecov.io": "^0.1.6", "commitizen": "^2.3.0", "cz-conventional-changelog": "^1.1.4", "ghooks": "^0.3.2", "gulp": "^3.9.0", "gulp-eslint": "^1.0.0", "gulp-mocha": "^2.1.3", "istanbul": "^0.4.0", "mocha": "^2.3.3", "semantic-release": "^4.3.5" }, "config": { "commitizen": { "path": "node_modules/cz-conventional-changelog" }, "ghooks": { "pre-commit": "npm test && npm run check-coverage" } } }