-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1017 Bytes
/
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
{
"name": "watchable-iptv",
"version": "0.1.0",
"type": "module",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"compile": "tsc --build",
"pretest": "tsc --build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"rollup": "rollup --config"
},
"dependencies": {
"array-shuffle": "^3",
"collections": "^5",
"follow-redirects": "^1.13",
"rxjs": "^7",
"url-to-options": "^2"
},
"devDependencies": {
"@jest/globals": "^27",
"@rollup/plugin-commonjs": "^21",
"@rollup/plugin-node-resolve": "^13",
"@rollup/plugin-typescript": "^8",
"@types/follow-redirects": "^1.13",
"@types/jest": "^27",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"eslint": "^8",
"eslint-config-google": "^0.14",
"gts": "^3",
"jest": "^27",
"jest-mock": "^27",
"rollup-plugin-terser": "^7",
"tslib": "^2",
"typescript": "4.4"
}
}