forked from questdb/nodejs-questdb-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 748 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 748 Bytes
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
{
"name": "@questdb/nodejs-client",
"version": "1.0.1",
"description": "QuestDB Node.js Client",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"eslint": "npx eslint src/**",
"docs": "jsdoc index.js src/sender.js README.md -d docs"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/questdb/nodejs-questdb-client.git"
},
"keywords": [
"QuestDB"
],
"author": "QuestDB",
"license": "Apache-2.0",
"homepage": "https://questdb.github.io/nodejs-questdb-client",
"jest": {
"testRunner": "jest-jasmine2"
},
"devDependencies": {
"eslint": "^8.21.0",
"jest": "^28.1.3",
"jest-jasmine2": "^28.1.3",
"testcontainers": "^8.12.0"
}
}