6dc67cda |
1 | { |
d36b321f |
2 | "name": "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", |
34a572eb |
8 | "test": "standard && nyc mocha --experimental-worker --exit --timeout 10000 tests/*test.js ", |
506c2a14 |
9 | "demontest": "nodemon --exec \"npm test\"", |
973cde26 |
10 | "coverage": "nyc report --reporter=text-lcov --timeout 5000 **/*test.js | coveralls", |
11 | "standard-verbose": "npx standard --verbose", |
6dc67cda |
12 | "lint": "standard --fix" |
13 | }, |
14 | "repository": { |
15 | "type": "git", |
d36b321f |
16 | "url": "git+https://github.com/pioardi/node-thread-pool.git" |
6dc67cda |
17 | }, |
18 | "keywords": [ |
19 | "node", |
20 | "thread-pool", |
21 | "worker-threads", |
22 | "performance", |
23 | "cpu", |
973cde26 |
24 | "computing", |
25 | "async-resource" |
6dc67cda |
26 | ], |
27 | "standard": { |
28 | "env": [ |
29 | "mocha", |
30 | "node" |
31 | ] |
32 | }, |
33 | "author": "pioardi", |
34 | "license": "MIT", |
35 | "bugs": { |
d36b321f |
36 | "url": "https://github.com/pioardi/node-thread-pool/issues" |
6dc67cda |
37 | }, |
d36b321f |
38 | "homepage": "https://github.com/pioardi/node-thread-pool#readme", |
973cde26 |
39 | "devDependencies": { |
57df5469 |
40 | "benchmark": "^2.1.4", |
973cde26 |
41 | "coveralls": "^3.0.9", |
42 | "expect": "^24.9.0", |
43 | "mocha": "^7.0.0", |
44 | "mocha-lcov-reporter": "^1.3.0", |
45 | "nyc": "^15.0.0", |
57df5469 |
46 | "standard": "^14.3.1", |
47 | "worker-threads-pool": "^2.0.0" |
6dc67cda |
48 | } |
49 | } |