-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
118 lines (118 loc) · 3.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@tigrisdata/core",
"version": "1.0.0",
"description": "Tigris client for Typescript",
"author": "Tigris Data (https://www.tigrisdata.com/)",
"contributors": [
{
"name": "A Ibrahim",
"email": "hello@designcode.me",
"url": "http://designcode.me"
},
{
"name": "Jigar Joshi",
"url": "https://www.tigrisdata.com/"
},
{
"name": "Adil Ansari",
"url": "https://www.tigrisdata.com/"
},
{
"name": "Matt Ayres"
}
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"release": {
"branches": [
{
"name": "release"
},
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/tigrisdata/tigris-client-ts"
},
"scripts": {
"clean": "rm -rf ./src/proto/* && rm -rf dist && rm -rf node_modules",
"init_api": "git submodule update --init --recursive",
"update_api": "git submodule update --init --recursive && git submodule update --remote --recursive --rebase && git submodule foreach --recursive git reset --hard origin/main",
"copy_api": "copyfiles -u 2 \"./src/proto/**/*.{js,ts}\" \"./dist/proto\"",
"protoc": "./scripts/protoc.sh",
"all": "npm run clean && npm run build && npm run prettier-check && npm run lint && npm run test",
"lint": "node ./node_modules/eslint/bin/eslint src/ --ext .ts",
"lint-fix": "npx eslint --ext .ts --fix src/",
"tsc": "tsc && npm run copy_api",
"build": "npm install && npm audit signatures && npm run protoc && npm run tsc",
"test": "jest --runInBand --coverage --silent --detectOpenHandles",
"prettier-check": "npx prettier --check .",
"prettify": "npx prettier --write .",
"preversion": "npm run lint && npm run prettier-check",
"prepare": "npm run init_api && npm run protoc && npm run tsc",
"prepublishOnly": "npm audit signatures && npm test && npm run lint && npm run prettier-check"
},
"engines": {
"node": ">= 12.0.0"
},
"keywords": [
"typescript",
"database"
],
"devDependencies": {
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^28.1.8",
"@types/json-bigint": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint-plugin-tsdoc": "0.2.17",
"copyfiles": "^2.4.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-functional": "^4.2.2",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"grpc_tools_node_protoc_ts": "^5.3.2",
"grpc-tools": "^1.12.4",
"jest": "^28.1.3",
"prettier": "2.7.1",
"ts-jest": "^28.0.8",
"ts-mockito": "^2.6.1",
"tsutils": "^3.21.0",
"typescript": "^4.7.2",
"uuid": "^8.3.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.8.14",
"chalk": "4.1.2",
"dotenv": "^16.0.3",
"google-protobuf": "^3.21.0",
"json-bigint": "github:sidorares/json-bigint",
"reflect-metadata": "^0.1.13",
"app-root-path": "^3.1.0"
}
}