-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "thingy-pool",
"version": "0.1.1",
"description": "A promise-based object pool for Node.js",
"author": "Pat Brown",
"license": "MIT",
"keywords": [
"object pool",
"resource pool",
"worker pool",
"pool",
"pooling"
],
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"homepage": "https://github.com/iampatbrown/thingy-pool#readme",
"repository": {
"type": "git",
"url": "https://github.com/iampatbrown/thingy-pool.git"
},
"bugs": {
"url": "https://github.com/iampatbrown/thingy-pool/issues"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.26.0",
"benchmark": "^2.1.4",
"better-docs": "^1.4.7",
"docdash": "github:iampatbrown/docdash",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jsdoc": "^23.0.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"jsdoc": "^3.6.3",
"jsdoc-autoprivate": "0.0.1",
"prettier": "^1.19.1"
},
"scripts": {
"test": "jest",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json"
}
}