UNPKG

multiprocessing

Version:
47 lines (46 loc) 1.03 kB
{ "name": "multiprocessing", "version": "1.2.0", "description": "Dead simple parallel processing for node", "repository": { "type": "git", "url": "https://github.com/ryanpon/node-multiprocessing" }, "main": "index.js", "scripts": { "preversion": "npm run test", "pretest": "npm run build", "test": "./node_modules/mocha/bin/mocha test/**/*.spec.js --exit", "bench": "node ./test/bench.js", "build": "babel lib -d build", "lint": "eslint ." }, "babel": { "presets": [ "latest" ] }, "keywords": [ "multiprocessing", "parallel", "multicore", "map", "pool" ], "author": "Ryan Pon", "license": "MIT", "dependencies": { "bluebird": "^3.4.7" }, "devDependencies": { "babel-cli": "^6.22.2", "babel-eslint": "^7.1.1", "babel-preset-latest": "^6.22.0", "chai": "^3.5.0", "chai-as-promised": "^6.0.0", "eslint": "^3.15.0", "eslint-plugin-babel": "^4.0.1", "lodash": "^4.17.4", "mocha": "^5.2.0" } }