Merge pull request #90 from pioardi/contributor-list
[poolifier.git] / package.json
index f8e74782beffa0f773dac8bf72197a2a57867921..efa32bc96a5b8ed858c494d32189a6d44cd0cc9d 100644 (file)
@@ -1,20 +1,24 @@
 {
-  "name": "node-thread-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 --exit --timeout 20000 tests/*test.js ",
-    "debug-test": "mocha --inspect-brk --experimental-worker --exit tests/*test.js ",
-    "demontest": "nodemon --exec \"npm test\"",
-    "coverage": "nyc report --reporter=text-lcov tests/*test.js | coveralls",
-    "standard-verbose": "npx standard --verbose",
-    "lint": "standard --fix"
+    "build": "npm run build:clean && tsc",
+    "build:clean": "rimraf lib",
+    "test": "standard && ts-standard && npm run build && nyc mocha --exit --timeout 20000 tests/*test.js ",
+    "test:debug": "mocha --inspect-brk --exit tests/*test.js ",
+    "coverage": "nyc report --reporter=text-lcov | coveralls",
+    "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'",
+    "standard:verbose": "npx standard --verbose",
+    "lint:standard": "prettier-standard --format | standard --fix",
+    "ts-standard:verbose": "npx ts-standard --verbose",
+    "lint:ts-standard": "ts-standard --fix",
+    "lint-and-format": "npm run lint:standard; npm run lint:ts-standard; npm run import-sort"
   },
   "repository": {
     "type": "git",
-    "url": "git+https://github.com/pioardi/node-thread-pool.git"
+    "url": "git+https://github.com/pioardi/poolifier.git"
   },
   "keywords": [
     "node",
     "env": [
       "mocha",
       "node"
+    ],
+    "ignore": [
+      "lib/",
+      "src/",
+      "examples/typescript/"
+    ]
+  },
+  "ts-standard": {
+    "env": [
+      "mocha",
+      "node"
+    ],
+    "extensions": ".ts",
+    "ignore": [
+      "lib/",
+      "examples/typescript/"
     ]
   },
   "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-thread-pool/issues"
+    "url": "https://github.com/pioardi/poolifier/issues"
   },
-  "homepage": "https://github.com/pioardi/node-thread-pool#readme",
+  "homepage": "https://github.com/pioardi/poolifier#readme",
   "devDependencies": {
     "benchmark": "^2.1.4",
     "coveralls": "^3.0.9",
-    "expect": "^24.9.0",
-    "mocha": "^7.0.0",
+    "expect": "^26.0.0",
+    "mocha": "^8.0.1",
     "mocha-lcov-reporter": "^1.3.0",
     "nyc": "^15.0.0",
-    "standard": "^14.3.1",
-    "worker-threads-pool": "^2.0.0"
-  }
+    "prettier-standard": "^16.4.1",
+    "rimraf": "^3.0.2",
+    "standard": "^16.0.3",
+    "ts-standard": "^10.0.0",
+    "typescript": "^4.1.3"
+  },
+  "engines": {
+    "node": ">=12.0.0"
+  },
+  "dependencies": {}
 }