forked from DrKain/subclean
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "subclean",
"version": "1.5.1",
"description": "A CLI package to clean subtitle files of advertising",
"main": "lib/index.js",
"scripts": {
"ver": "nvm use 14.18.0",
"test": "ts-node src/index.ts subtitle.srt --ne -w --uf=appdata --nochains --testing --debug --lang=de",
"test-update": "ts-node src/index.ts --update",
"build": "tsc && pkg . && npm run tidy",
"tidy": "ts-node postbuild.ts"
},
"keywords": [
"subtitle",
"clean",
"advertising",
"cli",
"bazarr",
"windows",
"linux",
"mac"
],
"author": "Kain (ksir.pw)",
"license": "MIT",
"dependencies": {
"@types/subtitle": "^2.0.3",
"minimist": "^1.2.5",
"subtitle": "^4.0.1",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"fs-extra": "^9.1.0",
"pkg": "^4.5.1",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"pkg": {
"out-path": "./bin/",
"assets": [
"filters/**/*",
"package.json"
]
},
"bin": {
"subclean": "lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrKain/subclean.git"
},
"bugs": {
"url": "https://github.com/DrKain/subclean/issues"
},
"homepage": "https://github.com/DrKain/subclean#readme"
}