-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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": "simple-trovo-api",
"version": "1.1.10",
"main": "index.js",
"types": "types/index.d.ts",
"license": "MIT",
"description": "An open-source package that allows easy to integrate your applications with Trovo API.",
"author": {
"email": "purplehorrorrus@gmail.com",
"name": "Maxim",
"url": "https://purplehorrorrus.github.io"
},
"repository": "https://github.com/PurpleHorrorRus/simple-trovo-api",
"bugs": {
"email": "purplehorrorrus@gmail.com",
"url": "https://github.com/PurpleHorrorRus/simple-trovo-api/issues"
},
"keywords": [
"API",
"Trovo",
"Trovo API",
"Broadcasts",
"Streams"
],
"scripts": {
"lint": "eslint . --ext .ts",
"clean": "rimraf lib/ && rimraf types/",
"build": "yarn clean && tsc",
"test": "jest",
"test:ci": "jest --setupFilesAfterEnv ./ci.js"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"node-fetch": "2.6.7",
"reconnecting-websocket": "^4.4.0"
}
}