-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "iggy-bin",
"type": "module",
"version": "1.3.4",
"description": "unofficial nodejs iggy.rs binary client",
"keywords": [
"iggy",
"iggy-rs",
"driver",
"client",
"protocol"
],
"repository": {
"type": "git",
"url": "/~https://github.com/T1B0/iggy-bin.git"
},
"homepage": "/~https://github.com/T1B0/iggy-bin#readme",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/index.d.ts"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"test": "node --import ./register-test.js --test --experimental-test-coverage './src/**/*.test.ts'",
"test:e2e": "node --import ./register-test.js --test --experimental-test-coverage --test-force-exit './src/e2e/*.e2e.ts'",
"clean": "rm -Rf dist/",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"author": "github.com/T1B0",
"license": "MIT",
"dependencies": {
"debug": "^4.3.5",
"generic-pool": "^3.9.0",
"uuidv7": "^0.6.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@swc-node/register": "^1.10.9",
"@types/debug": "^4.1.12",
"@types/node": "^20.10.7",
"semantic-release": "^24.0.0",
"typescript": "^5.3.3"
}
}