forked from HouCoder/tele-aria2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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": "tele-aria2",
"version": "0.2.2",
"description": "Control your Aria2 server through Telegram",
"homepage": "https://github.com/HouCoder/tele-aria2",
"main": "./dist/run.js",
"types": "./dist/typings.d.ts",
"bin": {
"tele-aria2": "./dist/run.js"
},
"files": [
"dist"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"check": "gts check",
"clean": "gts clean",
"compile": "rm -rf dist && tsc && mv dist/src/* dist && rm -rf dist/test dist/src",
"fix": "gts fix",
"prepare": "npm run compile"
},
"keywords": [
"Aria2",
"Telegram",
"telegraf"
],
"repository": {
"type": "git",
"url": "https://github.com/HouCoder/tele-aria2.git"
},
"author": "HouCoder<[email protected]>",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.157",
"@types/needle": "^2.0.4",
"@types/uuid": "^8.0.0",
"@types/websocket": "^1.0.0",
"@types/ws": "^7.2.6",
"colors": "^1.4.0",
"commander": "^5.1.0",
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.15",
"needle": "^2.5.0",
"reconnecting-websocket": "^4.4.0",
"telegraf": "^3.38.0",
"typescript": "^3.9.6",
"uuid": "^8.2.0",
"winston": "^3.3.3",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"chai": "^4.2.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"gts": "^2.0.2",
"mocha": "^8.0.1",
"ts-node": "^8.10.2"
}
}