Added prettier standard to support prettier and use it in combination with standard
[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": "index.js",
6 "types": "index.d.ts",
7 "scripts": {
8 "build": "npm install",
9 "test": "standard && nyc mocha --exit --timeout 20000 tests/*test.js ",
10 "debug-test": "mocha --inspect-brk --exit tests/*test.js ",
11 "demontest": "nodemon --exec \"npm test\"",
12 "coverage": "nyc report --reporter=text-lcov | coveralls",
13 "standard-verbose": "npx standard --verbose",
14 "lint": "prettier-standard --format | standard --fix"
15 },
16 "repository": {
17 "type": "git",
18 "url": "git+https://github.com/pioardi/poolifier.git"
19 },
20 "keywords": [
21 "node",
22 "thread-pool",
23 "worker-threads",
24 "performance",
25 "cpu",
26 "computing",
27 "async-resource"
28 ],
29 "standard": {
30 "env": [
31 "mocha",
32 "node"
33 ]
34 },
35 "author": "pioardi",
36 "license": "MIT",
37 "bugs": {
38 "url": "https://github.com/pioardi/poolifier/issues"
39 },
40 "homepage": "https://github.com/pioardi/poolifier#readme",
41 "devDependencies": {
42 "benchmark": "^2.1.4",
43 "coveralls": "^3.0.9",
44 "expect": "^26.0.0",
45 "mocha": "^8.0.1",
46 "mocha-lcov-reporter": "^1.3.0",
47 "nyc": "^15.0.0",
48 "prettier-standard": "^16.4.1",
49 "standard": "^16.0.0"
50 },
51 "engines": {
52 "node": ">=12.0.0"
53 },
54 "dependencies": {
55 "typescript": "^4.1.3"
56 }
57 }