-
Notifications
You must be signed in to change notification settings - Fork 590
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 964 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 964 Bytes
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
{
"name": "@midwayjs/tablestore",
"description": "midway tablestore component",
"version": "4.0.3",
"main": "dist/index.js",
"typings": "index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"index.d.ts"
],
"devDependencies": {
"@midwayjs/core": "workspace:^",
"@midwayjs/mock": "workspace:^"
},
"dependencies": {
"int64-buffer": "1.0.1",
"tablestore": "5.6.5"
},
"keywords": [
"aliyun",
"tablestore"
],
"author": "czy88840616 <czy88840616@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "node -r ts-node/register ../../node_modules/jest/bin/jest.js --runInBand",
"cov": "node -r ts-node/register ../../node_modules/jest/bin/jest.js --runInBand --coverage --forceExit",
"ci": "npm run test",
"lint": "mwts check"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/midwayjs/midway.git"
}
}