This repository was archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 KB
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
{
"name": "typedb-client",
"version": "2.11.1",
"description": "TypeDB Client for Node.js",
"author": "Vaticle",
"license": "Apache-2.0",
"homepage": "https://vaticle.com",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/vaticle/typedb-client-nodejs"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "npm run test-concept && npm run test-connection && npm run test-query",
"test-concept": "node test/integration/test-concept.js",
"test-connection": "node test/integration/test-connection.js",
"test-query": "node test/integration/test-query.js",
"test-cluster-failover": "npm run build && node test/integration/test-cluster-failover.js",
"test-stream": "node test/integration/test-stream.js",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@grpc/grpc-js": "1.9.0",
"google-protobuf": "3.19.3",
"typedb-protocol": "2.18.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@cucumber/cucumber": "9.0.0",
"@cucumber/pretty-formatter": "1.0.0-alpha.0",
"@types/google-protobuf": "3.15.5",
"@types/node": "20.0.0",
"@types/uuid": "9.0.2",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"eslint": "7.14.0",
"fs-extra": "7.0.1",
"jest": "^28.0.0",
"properties-reader": "2.2.0",
"rimraf": "3.0.2",
"tmp": "0.1.0",
"typescript": "4.9.5"
}
}