-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 1.88 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pt-autorss",
"version": "4.0.0",
"description": "Auto fetch and download torrents even can auto load torrents.",
"private": true,
"scripts": {
"start": "ts-node -T .",
"lint": "tslint -p .",
"test": "mocha --require ts-node/register test/**/*.ts",
"coverage": "nyc npm test"
},
"author": "huihuimoe",
"license": "SATA",
"engines": {
"node": ">=8"
},
"dependencies": {
"axios": "0.27.2",
"dayjs": "1.11.1",
"deluge-rpc": "1.0.5",
"jsdom": "^19.0.0",
"lodash": "4.17.21",
"parse-torrent": "9.1.5",
"qbittorrent-api": "huihuimoe/node-qbittorrent-api",
"transmission": "0.4.10",
"ts-node": "10.7.0",
"typescript": "4.6.4",
"xmlrpc": "1.3.2"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/jsdom": "16.2.14",
"@types/lodash": "4.14.182",
"@types/mocha": "9.1.1",
"@types/node": "17.0.31",
"@types/parse-torrent": "5.8.4",
"@types/sinon": "10.0.11",
"@types/xmlrpc": "1.3.7",
"chai": "4.3.6",
"husky": "7.0.4",
"mocha": "10.0.0",
"nyc": "15.1.0",
"prettier": "2.6.2",
"sinon": "13.0.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html"
]
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"renovate": {
"extends": [
"config:base"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huihuimoe/pt-autorss.git"
},
"bugs": {
"url": "https://github.com/huihuimoe/pt-autorss/issues"
},
"homepage": "https://github.com/huihuimoe/pt-autorss#readme"
}