-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "iggy-node-client",
"author": "Patryk Huzarski (iggy-rs)",
"license": "ISC",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint . --max-warnings=0",
"test": "jest"
},
"dependencies": {
"axios": "^1.4.0",
"buffer": "^6.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.6.2",
"prettier": "^3.1.1",
"testcontainers": "^10.4.0",
"ts-jest": "^29.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iggy-rs/iggy-node-client.git"
},
"bugs": {
"url": "https://github.com/iggy-rs/iggy-node-client/issues"
},
"homepage": "https://github.com/iggy-rs/iggy-node-client#readme",
"volta": {
"node": "18.18.1"
}
}