Update package.json
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
36354c94 3 "version": "1.2.0",
973cde26 4 "description": "Library on top of node js worker threads that implement various worker pools type",
6dc67cda 5 "main": "index.js",
06b0522e 6 "types": "index.d.ts",
6dc67cda 7 "scripts": {
973cde26 8 "build": "npm install",
d9992bf9 9 "test": "standard && nyc mocha --exit --timeout 20000 tests/*test.js ",
8950a941 10 "debug-test": "mocha --inspect-brk --exit tests/*test.js ",
506c2a14 11 "demontest": "nodemon --exec \"npm test\"",
6c8617c5 12 "coverage": "nyc report --reporter=text-lcov | coveralls",
973cde26 13 "standard-verbose": "npx standard --verbose",
6dc67cda 14 "lint": "standard --fix"
15 },
16 "repository": {
17 "type": "git",
81c5a5cb 18 "url": "git+https://github.com/pioardi/poolifier.git"
6dc67cda 19 },
20 "keywords": [
21 "node",
22 "thread-pool",
23 "worker-threads",
24 "performance",
25 "cpu",
973cde26 26 "computing",
27 "async-resource"
6dc67cda 28 ],
29 "standard": {
30 "env": [
31 "mocha",
32 "node"
33 ]
34 },
35 "author": "pioardi",
36 "license": "MIT",
37 "bugs": {
81c5a5cb 38 "url": "https://github.com/pioardi/poolifier/issues"
6dc67cda 39 },
81c5a5cb 40 "homepage": "https://github.com/pioardi/poolifier#readme",
973cde26 41 "devDependencies": {
57df5469 42 "benchmark": "^2.1.4",
973cde26 43 "coveralls": "^3.0.9",
57af0ad8 44 "expect": "^26.0.0",
80b61305 45 "mocha": "^8.0.1",
973cde26 46 "mocha-lcov-reporter": "^1.3.0",
47 "nyc": "^15.0.0",
522eea03 48 "standard": "^14.3.1"
da1f2de4
E
49 },
50 "engines": {
95fd8cf4 51 "node": ">=12.0.0"
6dc67cda 52 }
53}