forked from ydb-platform/ydb-nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.49 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
55
56
57
58
59
60
61
{
"name": "ydb-sdk",
"version": "3.0.0",
"description": "Node.js bindings for working with YDB API over gRPC",
"main": "build/index.js",
"files": [
"build/**",
"certs/"
],
"scripts": {
"test:unit": "exit 0",
"test:integration": "jest",
"test:all": "run-p test:unit test:integration",
"test": "npm run test:unit",
"build": "tsc",
"clean": "rm -rf build",
"prepublish": "npm run clean && npm run build",
"release": "standard-version"
},
"keywords": [
"ydb",
"sdk",
"grpc"
],
"repository": {
"type": "git",
"url": "https://github.com/ydb-platform/ydb-nodejs-sdk.git"
},
"author": "Timur Sufiev",
"license": "Apache",
"dependencies": {
"@grpc/grpc-js": "^1.5.3",
"@types/pino": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"long": "^4.0.0",
"luxon": "^1.21.2",
"pino": "^6.3.0",
"pino-pretty": "^3.6.1",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2",
"yandex-cloud": "^1.4.2",
"ydb-sdk-proto": "^0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.144",
"@types/luxon": "^1.21.0",
"@types/node": "10.17.20",
"@types/uuid": "^8.3.4",
"husky": "^7.0.4",
"jest": "^27.1.0",
"npm-run-all": "^4.1.5",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.5",
"typescript": "^3.9.3"
}
}