Merge pull request #125 from pioardi/vscode-debug
[poolifier.git] / package.json
index 046a08ea43e7d263eaa7e3e5344a938e05918ceb..0588fc281037734cc71bc7da4fe593411847c785 100644 (file)
@@ -1,51 +1,87 @@
 {
-  "name": "node-pool.",
-  "version": "0.0.1",
+  "name": "poolifier",
+  "version": "1.2.1",
   "description": "Library on top of node js worker threads that implement various worker pools type",
-  "main": "index.js",
+  "main": "lib/index.js",
   "scripts": {
-    "build": "npm install",
-    "test": "standard && nyc mocha --experimental-worker --exit --timeout 10000 **/*test.js ",
-    "demontest": "nodemon --exec \"npm test\"",
-    "coverage": "nyc report --reporter=text-lcov --timeout 5000 **/*test.js | coveralls",
-    "standard-verbose": "npx standard --verbose",
-    "lint": "standard --fix"
+    "build": "rollup --config",
+    "build:dev": "rollup --config --environment BUILD:development",
+    "benchmark": "npm run build && node benchmarks/bench.js",
+    "benchmark:debug": "npm run build:dev && node -r source-map-support/register --inspect-brk benchmarks/bench.js",
+    "benchmark:debug:vscode": "node -r source-map-support/register benchmarks/bench.js",
+    "test": "npm run build && nyc mocha --exit --timeout 20000 tests/**/*.test.js",
+    "test:debug": "npm run build:dev && mocha -r source-map-support/register --inspect-brk --exit tests/**/*.test.js",
+    "test:debug:vscode": "mocha -r source-map-support/register --exit tests/**/*.test.js",
+    "coverage": "nyc report --reporter=text-lcov | coveralls",
+    "coverage:html": "nyc --reporter=html mocha --exit --timeout 20000 tests/**/*.test.js",
+    "format": "prettier --loglevel silent --write .; prettierx --write .",
+    "lint": "eslint .",
+    "lint:fix": "eslint . --fix"
   },
   "repository": {
     "type": "git",
-    "url": "git+https://github.com/pioardi/node-pool.git"
+    "url": "git+https://github.com/pioardi/poolifier.git"
   },
   "keywords": [
     "node",
     "thread-pool",
     "worker-threads",
+    "cluster",
     "performance",
     "cpu",
     "computing",
     "async-resource"
   ],
-  "standard": {
-    "env": [
-      "mocha",
-      "node"
-    ]
-  },
   "author": "pioardi",
+  "contributors": [
+    {
+      "name": "Christopher Quadflieg",
+      "email": "chrissi92@hotmail.de",
+      "url": "https://github.com/Shinigami92"
+    },
+    {
+      "name": "Jérôme Benoit",
+      "email": "jerome.benoit@piment-noir.org",
+      "url": "https://github.com/jerome-benoit"
+    }
+  ],
   "license": "MIT",
   "bugs": {
-    "url": "https://github.com/pioardi/node-pool/issues"
-  },
-  "homepage": "https://github.com/pioardi/node-pool#readme",
-  "dependencies": {
-    "tape": "^4.13.0",
-    "uuid": "^3.4.0"
+    "url": "https://github.com/pioardi/poolifier/issues"
   },
+  "homepage": "https://github.com/pioardi/poolifier#readme",
+  "files": [
+    "lib"
+  ],
   "devDependencies": {
-    "coveralls": "^3.0.9",
-    "expect": "^24.9.0",
-    "mocha": "^7.0.0",
+    "@types/node": "^14.14.25",
+    "@typescript-eslint/eslint-plugin": "^4.15.0",
+    "@typescript-eslint/parser": "^4.15.0",
+    "@wessberg/rollup-plugin-ts": "^1.3.8",
+    "benchmark": "^2.1.4",
+    "coveralls": "^3.1.0",
+    "eslint": "^7.19.0",
+    "eslint-config-standard": "^16.0.2",
+    "eslint-plugin-import": "^2.22.1",
+    "eslint-plugin-node": "^11.1.0",
+    "eslint-plugin-prettierx": "^0.17.1",
+    "eslint-plugin-promise": "^4.2.1",
+    "expect": "^26.6.2",
+    "mocha": "^8.2.1",
     "mocha-lcov-reporter": "^1.3.0",
-    "nyc": "^15.0.0",
-    "standard": "^14.3.1"
+    "nyc": "^15.1.0",
+    "prettier": "^2.2.1",
+    "prettier-plugin-organize-imports": "^1.1.1",
+    "prettierx": "^0.17.0",
+    "rollup": "^2.38.5",
+    "rollup-plugin-delete": "^2.0.0",
+    "source-map-support": "^0.5.19",
+    "typescript": "^4.1.4",
+    "worker-threads-pool": "^2.0.0",
+    "workerpool": "^6.1.0"
+  },
+  "engines": {
+    "node": ">=12.11.0",
+    "npm": ">=6.0.0 <7"
   }
 }