-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
77 lines (77 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ydb-sdk",
"version": "5.8.0",
"description": "Node.js bindings for working with YDB API over gRPC",
"main": "build/cjs/src/index.js",
"module": "build/esm/src/index.js",
"exports": {
".": {
"import": "./build/esm/src/index.js",
"require": "./build/cjs/src/index.js"
}
},
"files": [
"build/**"
],
"scripts": {
"test:dev": "cross-env TEST_ENVIRONMENT=dev jest --config jest.config.dev.js",
"test:prod": "jest --config jest.config.prod.js",
"test:coverage": "cross-env TEST_ENVIRONMENT=dev jest --config jest.config.coverage.js",
"test": "echo Got to be nothing, actual testing kills the Release action",
"build": "tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json",
"clean": "rimraf build",
"prepublishOnly": "npm run clean && npm run build && node ./fixup.js"
},
"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.12.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"long": "^5.2.3",
"luxon": "^3.5.0",
"protobufjs": "^7.4.0",
"reflect-metadata": "^0.1.13",
"typed-emitter": "^2.1.0",
"ydb-sdk-proto": "^1.2.6"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^15.0.0",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.144",
"@types/luxon": "^3.4.2",
"@types/node": "^20.17.0",
"@yandex-cloud/nodejs-sdk": "^2.7.7",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"husky": "^9.1.6",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"peerDependenciesMeta": {
"@yandex-cloud/nodejs-sdk": {
"optional": true
}
},
"peerDependencies": {
"@yandex-cloud/nodejs-sdk": "^2.0.0"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
}
}