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