forked from qgustavor/mkv-extract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 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
59
60
{
"name": "mkv-extract",
"version": "1.1.0",
"description": "Extract MKV tracks and attachments directly from the browser",
"scripts": {
"test": "standardx src/*.ts",
"dev": "parcel src/index.html",
"build": "parcel build src/index.html --public-url /mkv-extract/"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"repository": {
"type": "git",
"url": "git+https://github.com/qgustavor/mkv-extract.git"
},
"keywords": [
"mkv",
"browser"
],
"author": "qgustavor (https://qgustavor.tk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/qgustavor/mkv-extract/issues"
},
"homepage": "https://github.com/qgustavor/mkv-extract#readme",
"private": true,
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"devDependencies": {
"@types/ebml": "^3.0.0",
"@types/progress-stream": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"buffer": "^6.0.3",
"events": "^3.3.0",
"parcel": "^2.5.0",
"process": "^0.11.10",
"standardx": "^5.0.0",
"stream-browserify": "^3.0.0",
"typescript": "^3.9.3",
"util": "^0.12.4"
},
"dependencies": {
"ebml": "^2.2.4",
"filereader-stream": "^1.0.0",
"jszip": "^3.7.0",
"progress-stream": "^2.0.0",
"promisepipe": "^3.0.0",
"save-as": "^0.1.8"
}
}