forked from coopernurse/node-pool
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.3 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
50
51
52
53
54
55
56
{
"name": "sequelize-pool",
"description": "Resource pooling for Node.JS",
"version": "8.0.0",
"author": "Sushant <[email protected]>",
"keywords": [
"pool",
"pooling",
"throttle",
"sequelize"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "http://github.com/sushantdhiman/sequelize-pool.git"
},
"files": [
"lib",
"types"
],
"types": "types",
"devDependencies": {
"@types/node": "^10.17.60",
"@types/tap": "^15.0.8",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"tap": "^16.3.8",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.4",
"typescript": "^5.1.6"
},
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"build": "tsc -b tsconfig-build.json",
"types": "tsc",
"test": "npm run lint && npm run test:raw",
"lint": "eslint --ext .ts src/**/* test/**/*",
"pretty": "prettier src test --write",
"docs": "typedoc",
"test:raw": "tap --ts test/**/*-test.ts"
},
"prettier": {
"singleQuote": true
},
"tap": {
"check-coverage": false
},
"license": "MIT"
}