-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "subclean",
"version": "1.8.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 -w -i subtitle.srt",
"test:pkg": "ts-node test.ts",
"test:sweep": "ts-node src/index.ts -w --sweep \"tests\" --debug",
"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",
"detect-file-encoding-and-language": "^2.4.0",
"iconv-lite": "^0.6.3",
"minimist": "^1.2.5",
"subtitle": "^4.0.1",
"typescript": "^4.2.4",
"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"
},
"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"
}