Rewrite to TypeScript
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
ed1e08f2 3 "version": "1.2.1",
973cde26 4 "description": "Library on top of node js worker threads that implement various worker pools type",
4ade5f1f 5 "main": "lib/index.js",
6dc67cda 6 "scripts": {
4ade5f1f
S
7 "build": "npm install && rimraf lib && tsc",
8 "test": "rimraf lib && tsc && 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",
cf9aa6c3 13 "lint": "prettier-standard --format | standard --fix"
6dc67cda 14 },
15 "repository": {
16 "type": "git",
81c5a5cb 17 "url": "git+https://github.com/pioardi/poolifier.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": {
81c5a5cb 37 "url": "https://github.com/pioardi/poolifier/issues"
6dc67cda 38 },
81c5a5cb 39 "homepage": "https://github.com/pioardi/poolifier#readme",
973cde26 40 "devDependencies": {
57df5469 41 "benchmark": "^2.1.4",
973cde26 42 "coveralls": "^3.0.9",
57af0ad8 43 "expect": "^26.0.0",
80b61305 44 "mocha": "^8.0.1",
973cde26 45 "mocha-lcov-reporter": "^1.3.0",
46 "nyc": "^15.0.0",
cf9aa6c3 47 "prettier-standard": "^16.4.1",
4ade5f1f
S
48 "rimraf": "^3.0.2",
49 "standard": "^16.0.0",
50 "typescript": "^4.1.3"
da1f2de4
E
51 },
52 "engines": {
95fd8cf4 53 "node": ">=12.0.0"
cf9aa6c3 54 },
4ade5f1f 55 "dependencies": {}
6dc67cda 56}