forked from Multivit4min/TS3-NodeJS-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "ts3-nodejs-library",
"version": "2.1.0",
"description": "TeamSpeak Server Query API",
"main": "index.js",
"types": "./lib/TeamSpeak.d.ts",
"homepage": "https://github.com/Multivit4min/TS3-NodeJS-Library",
"repository": {
"type": "git",
"url": "git+https://github.com/Multivit4min/TS3-NodeJS-Library.git"
},
"scripts": {
"eslint": "eslint ./src/**/*.ts",
"test": "jest --runInBand",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"generate-docs": "typedoc --out docs ./src",
"build": "tsc",
"prepare": "npm run build"
},
"files": [
"*"
],
"keywords": [
"teamspeak",
"teamspeak3",
"ts",
"ts3",
"query",
"serverquery"
],
"author": "Multivitamin <david.kartnaller@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/ssh2": "^0.5.39",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"coveralls": "^3.0.6",
"crc-32": "^1.2.0",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
},
"dependencies": {
"ssh2": "^0.8.5"
}
}