-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 2.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@nikolay-borzov/torrent-clean",
"version": "3.0.0",
"description": "Deletes files that are not listed in the selected torrent file",
"keywords": [
"torrent",
"node",
"cli"
],
"author": "Nikolay Borzov <[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./lib/api.js",
"bin": {
"torrent-clean": "bin/torrent-clean.js",
"tc": "bin/torrent-clean.js"
},
"engines": {
"node": ">=18"
},
"preferGlobal": true,
"repository": "https://github.com/nikolay-borzov/torrent-clean.git",
"bugs": {
"url": "https://github.com/nikolay-borzov/torrent-clean/issues"
},
"homepage": "https://github.com/nikolay-borzov/torrent-clean#readme",
"scripts": {
"test": "ava",
"test:watch": "ava --watch",
"test:update-snapshot": "ava --update-snapshots",
"test:coverage:collect": "c8 ava",
"test:coverage:view": "open-cli coverage\\lcov-report\\index.html",
"test:coverage:ci": "c8 --reporter=lcov ava",
"lint": "eslint \"**/*.*\"",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"files": [
"bin",
"lib"
],
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"semi": false
},
"ava": {
"files": [
"tests/*.test.js"
],
"verbose": true
},
"c8": {
"all": true,
"include": [
"lib/**"
],
"reporter": [
"text",
"lcov"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-case": [
2,
"always",
"sentence-case"
],
"body-max-line-length": [
0,
"always",
100
],
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"dependencies": {
"chalk": "^5.2.0",
"cosmiconfig": "^8.1.0",
"delete-empty": "^3.0.0",
"enquirer": "^2.3.6",
"memory-chunk-store": "^1.3.5",
"minimist": "^1.2.8",
"picomatch": "^2.3.1",
"readdirp": "^3.6.0",
"webtorrent": "^2.0.14",
"yaml": "^2.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"ava": "^5.2.0",
"c8": "^7.13.0",
"create-temp-directory": "^2.3.0",
"create-torrent": "^6.0.10",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"open-cli": "^7.1.0",
"prettier": "^2.8.4",
"prettier-config-standard": "^5.0.0"
}
}