-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 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
{
"version": "0.2.3",
"name": "trino-client",
"description": "Trino client library",
"type": "module",
"author": {
"name": "Filipe Regadas",
"email": "oss@regadas.email",
"url": "https://regadas.dev"
},
"keywords": [
"trino",
"trinodb",
"client"
],
"repository": {
"type": "git",
"url": "https://github.com/trinodb/trino-js-client.git"
},
"homepage": "https://trinodb.github.io/trino-js-client",
"bugs": {
"url": "https://github.com/trinodb/trino-js-client/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "yarn@3.2.1",
"license": "Apache-2.0",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.2.3",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "1.7.7"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test:it": "jest --testPathPattern tests/it",
"test:lint": "eslint .",
"publish": "yarn build && yarn npm publish"
}
}