-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "ydb-table-defs",
"version": "0.0.7",
"description": "simplify table definition, additional package to YDB-SDK",
"scripts": {
"example1": "ts-node -r tsconfig-paths/register ./src/examples/basic-example-new-way/index.ts",
"build:lib": "npm run clean && tsc",
"clean": "rimraf -rf build",
"release": "standard-version -f"
},
"files": [
"build/**"
],
"main": "build/index.js",
"keywords": [
"ydb",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/Ulibka68/ydb-table-defs"
},
"author": "Gayrat Vlasov",
"license": "Apache",
"dependencies": {
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/lodash": "^4.14.144",
"@types/node": "10.17.20",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
}
}