-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "resource-pooler",
"version": "0.2.0",
"description": "Minimal lib for managing resource access concurrent access over resources",
"main": "dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"prepublishOnly": "npm run build",
"test": "jest",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vezaynk/resource-pooler.git"
},
"author": "Slava Knyazev",
"license": "MIT",
"bugs": {
"url": "https://github.com/vezaynk/resource-pooler/issues"
},
"homepage": "https://github.com/vezaynk/resource-pooler#readme",
"devDependencies": {
"@types/jest": "^28.1.5",
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.3",
"prettier": "^2.8.8",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}