This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wasdtv",
"version": "0.0.11",
"main": "lib/wasdtv.js",
"typings": "lib/wasdtv.d.ts",
"module": "lib/wasdtv.esm.js",
"files": [
"src",
"lib",
"package.json",
"README.md",
"LICENSE"
],
"license": "MIT",
"author": "sheverniskiy",
"description": "WASD.tv API client",
"keywords": [
"wasd",
"wasdtv",
"wasd api",
"api",
"api-client",
"client",
"socket",
"stream"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shevernitskiy/wasdtv.git"
},
"scripts": {
"prebuild": "rimraf lib/*",
"start": "node lib/wasdtv.js",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"prepare": "rollup -c",
"lint": "eslint . --ext .ts",
"test": "jest wasd.test.ts",
"test:coverage": "jest --coverage wasd.test.ts",
"start:playground": "npx ts-node src/playground.ts",
"test:playground": "jest playground.test.ts",
"release": "np patch"
},
"dependencies": {
"axios": "^0.27.2",
"m3u8stream": "^0.8.6",
"socket.io-client": "^2.4.0"
},
"devDependencies": {
"@types/jest": "~28.1",
"@types/node": "^17.0.35",
"@types/socket.io-client": "^1.4.36",
"@typescript-eslint/eslint-plugin": "~5.27",
"@typescript-eslint/parser": "~5.27",
"debug": "^4.3.4",
"eslint": "~8.17",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~26.5",
"eslint-plugin-sonarjs": "^0.13.0",
"jest": "^28.1.0",
"rimraf": "3.0.2",
"rollup": "^2.75.0",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.2"
}
}