forked from cross-seed/cross-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.38 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": "cross-seed",
"version": "2.8.0",
"description": "Query Jackett for cross-seedable torrents",
"scripts": {
"test": "true",
"build": "tsc",
"release": "np",
"prepare": "rimraf dist && npm run build"
},
"bin": {
"cross-seed": "dist/src/cmd.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git://github.com/mmgoodnow/cross-seed.git"
},
"author": "Michael Goodnow",
"license": "Apache-2.0",
"dependencies": {
"bencode": "^2.0.1",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"form-data": "^3.0.1",
"lodash": "^4.17.21",
"lowdb": "^1.0.0",
"node-fetch": "^2.6.1",
"parse-torrent": "^9.1.3",
"rimraf": "^2.6.3",
"simple-get": "^4.0.0",
"winston": "^3.3.3",
"xmlrpc": "^1.3.2"
},
"devDependencies": {
"@types/bencode": "^2.0.0",
"@types/lowdb": "^1.0.9",
"@types/node-fetch": "^2.5.8",
"@types/xmlrpc": "^1.3.6",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"np": "*",
"prettier": "^2.0.5",
"typescript": "^4.2.3"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"proseWrap": "always"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache",
"*.{js,json,ts,css,md}": "prettier --write"
},
"np": {
"yarn": false
}
}