-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.38 KB
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
{
"name": "@powerkernel/nats-client",
"version": "1.4.20",
"description": "NATS client used by Power Kernel projects",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"update": "npx npm-check-updates",
"upgrade": "npx npm-check-updates -u && npm i",
"release": "npx standard-version && git push --follow-tags origin main",
"test": "jest --coverage",
"testw": "jest --coverage --watch",
"build": "npm run clean && tsc",
"clean": "del ./dist/*",
"lint": "eslint ./src --ext .ts --fix",
"prepare": "husky install"
},
"keywords": [
"power",
"kernel",
"postgresql",
"client"
],
"author": {
"name": "Harry Tang",
"email": "harry@powerkernel.com",
"url": "https://powerkernel.com"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"del-cli": "7.0.0",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"jest": "29.7.0",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"dependencies": {
"@powerkernel/common": "^0.2.11",
"nats": "^2.6.1"
}
}