-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.37 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": "adabas-tcp",
"version": "1.0.17",
"description": "High level Adabas access package using a TCP connection",
"keywords": [
"adabas",
"database",
"tcp"
],
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "tsc",
"fdt": "jest -t FDT",
"lint": "tsc --noEmit && eslint */**/*.{js,ts} --quiet --fix",
"test": "jest --watchAll"
},
"author": "Software AG",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/SoftwareAG/adabas-tcp.git"
},
"bugs": "https://github.com/SoftwareAG/adabas-tcp/issues",
"files": [
"dist/**/*"
],
"dependencies": {
"@types/joi": "^17.2.3",
"@types/node": "^20.4.2",
"int64-buffer": "^1.0.1",
"joi": "^17.9.2"
},
"devDependencies": {
"@types/config": "^3.3.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"config": "^3.3.1",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}