-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "ts3-nodejs-library",
"version": "3.5.1",
"description": "TeamSpeak Server Query API",
"main": "lib/index.js",
"homepage": "https://github.com/Multivit4min/TS3-NodeJS-Library",
"repository": {
"type": "git",
"url": "git+https://github.com/Multivit4min/TS3-NodeJS-Library.git"
},
"scripts": {
"tslint": "tslint --project .",
"test": "jest --runInBand",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"generate-docs": "typedoc --out docs ./src",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "rm -Rf ./coverage"
},
"keywords": [
"teamspeak",
"teamspeak3",
"ts",
"ts3",
"query",
"serverquery"
],
"author": "Multivitamin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/buffer-crc32": "^0.2.2",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.2",
"@types/ssh2": "^1.11.13",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"coveralls": "^3.1.1",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"dependencies": {
"buffer-crc32": "^0.2.13",
"ssh2": "^1.14.0"
}
}