forked from dtm-labs/dtmcli-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "dtmcli",
"version": "0.0.10",
"description": "client sdk for distributed transaction framework dtm",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:dtm-labs/dtmcli-node.git",
"author": "yedf",
"license": "MIT",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build",
"pub": "npm publish --registry=https://registry.npmjs.org/",
"test": "yarn jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"jest": "^27.4.5",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.24.0",
"ts-jest": "^27.1.2",
"typedjson": "^1.8.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1"
},
"peerDependencies": {
"sequelize": ">=6.12.0"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}