Update README.MD
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
3229d303 2 "name": "@pioardi/node-thread-pool",
6dc67cda 3 "version": "0.0.1",
973cde26 4 "description": "Library on top of node js worker threads that implement various worker pools type",
6dc67cda 5 "main": "index.js",
6 "scripts": {
973cde26 7 "build": "npm install",
d9992bf9 8 "test": "standard && nyc mocha --exit --timeout 20000 tests/*test.js ",
8950a941 9 "debug-test": "mocha --inspect-brk --exit tests/*test.js ",
506c2a14 10 "demontest": "nodemon --exec \"npm test\"",
6c8617c5 11 "coverage": "nyc report --reporter=text-lcov | coveralls",
973cde26 12 "standard-verbose": "npx standard --verbose",
6dc67cda 13 "lint": "standard --fix"
14 },
15 "repository": {
16 "type": "git",
d36b321f 17 "url": "git+https://github.com/pioardi/node-thread-pool.git"
6dc67cda 18 },
19 "keywords": [
20 "node",
21 "thread-pool",
22 "worker-threads",
23 "performance",
24 "cpu",
973cde26 25 "computing",
26 "async-resource"
6dc67cda 27 ],
28 "standard": {
29 "env": [
30 "mocha",
31 "node"
32 ]
33 },
34 "author": "pioardi",
35 "license": "MIT",
36 "bugs": {
d36b321f 37 "url": "https://github.com/pioardi/node-thread-pool/issues"
6dc67cda 38 },
d36b321f 39 "homepage": "https://github.com/pioardi/node-thread-pool#readme",
973cde26 40 "devDependencies": {
57df5469 41 "benchmark": "^2.1.4",
973cde26 42 "coveralls": "^3.0.9",
43 "expect": "^24.9.0",
44 "mocha": "^7.0.0",
45 "mocha-lcov-reporter": "^1.3.0",
46 "nyc": "^15.0.0",
57df5469 47 "standard": "^14.3.1",
48 "worker-threads-pool": "^2.0.0"
6dc67cda 49 }
50}