5c4c5acbbbee1ddfed195e7e8ce24ec361606234
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "1.2.1",
4 "description": "Library on top of node js worker threads that implement various worker pools type",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "npm install && rimraf lib && tsc",
8 "test": "rimraf lib && tsc && nyc mocha --exit --timeout 20000 tests/*test.js ",
9 "debug-test": "mocha --inspect-brk --exit tests/*test.js ",
10 "demontest": "nodemon --exec \"npm test\"",
11 "coverage": "nyc report --reporter=text-lcov | coveralls",
12 "standard-verbose": "npx standard --verbose",
13 "lint": "prettier-standard --format | standard --fix"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/pioardi/poolifier.git"
18 },
19 "keywords": [
20 "node",
21 "thread-pool",
22 "worker-threads",
23 "performance",
24 "cpu",
25 "computing",
26 "async-resource"
27 ],
28 "standard": {
29 "env": [
30 "mocha",
31 "node"
32 ]
33 },
34 "author": "pioardi",
35 "license": "MIT",
36 "bugs": {
37 "url": "https://github.com/pioardi/poolifier/issues"
38 },
39 "homepage": "https://github.com/pioardi/poolifier#readme",
40 "devDependencies": {
41 "benchmark": "^2.1.4",
42 "coveralls": "^3.0.9",
43 "expect": "^26.0.0",
44 "mocha": "^8.0.1",
45 "mocha-lcov-reporter": "^1.3.0",
46 "nyc": "^15.0.0",
47 "prettier-standard": "^16.4.1",
48 "rimraf": "^3.0.2",
49 "standard": "^16.0.0",
50 "typescript": "^4.1.3"
51 },
52 "engines": {
53 "node": ">=12.0.0"
54 },
55 "dependencies": {}
56 }