Setting up github actions
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
2 "name": "node-pool.",
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",
8 "test": "standard && nyc mocha --exit --timeout 10000 **/*test.js ",
9 "coverage": "nyc report --reporter=text-lcov --timeout 5000 **/*test.js | coveralls",
10 "standard-verbose": "npx standard --verbose",
6dc67cda 11 "lint": "standard --fix"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/pioardi/node-pool.git"
16 },
17 "keywords": [
18 "node",
19 "thread-pool",
20 "worker-threads",
21 "performance",
22 "cpu",
973cde26 23 "computing",
24 "async-resource"
6dc67cda 25 ],
26 "standard": {
27 "env": [
28 "mocha",
29 "node"
30 ]
31 },
32 "author": "pioardi",
33 "license": "MIT",
34 "bugs": {
35 "url": "https://github.com/pioardi/node-pool/issues"
36 },
37 "homepage": "https://github.com/pioardi/node-pool#readme",
a32e02ba 38 "dependencies": {
39 "uuid": "^3.4.0"
973cde26 40 },
41 "devDependencies": {
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",
47 "standard": "^14.3.1"
6dc67cda 48 }
49}