-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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": "pinot-client",
"version": "0.3.0",
"description": "Node.js client for Apache Pinot",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "tsc",
"test": "jest --coverage src",
"format": "prettier --check src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kffl/pinot-client-node.git"
},
"keywords": [
"pinot",
"apache-pinot",
"database-client"
],
"author": "Paweł Kuffel <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kffl/pinot-client-node/issues"
},
"homepage": "https://github.com/kffl/pinot-client-node#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^17.0.36",
"fastify": "^4.1.0",
"jest": "^28.1.0",
"jest-mock-extended": "^2.0.6",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"typedoc": "^0.23.1",
"typescript": "^4.7.2"
},
"dependencies": {
"undici": "^5.8.0"
}
}