-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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
{
"name": "ts-ebml",
"version": "3.0.1",
"description": "ebml decoder and encoder",
"scripts": {
"clean": "rimraf lib/* dist/* test/*.js",
"build": "npm run clean && tsc -p . && npm run _build_standalone && npm run _build_test",
"_build_standalone": "browserify lib/index.js --standalone EBML -o dist/EBML.js && uglifyjs dist/EBML.js > dist/EBML.min.js",
"_build_test": "espower lib/test.js > lib/test.tmp && mv -f lib/test.tmp lib/test.js && browserify lib/test.js -o dist/test.js",
"test": "playwright install && playwright test",
"serve": "http-server",
"lint": "eslint src",
"fmt": "prettier --write 'src/**/*.ts'",
"doc": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/legokichi/ts-ebml.git"
},
"keywords": [
"ebml",
"webm",
"mkv",
"matrosika",
"webp"
],
"author": "legokichi duckscallion",
"license": "MIT",
"bugs": {
"url": "https://github.com/legokichi/ts-ebml/issues"
},
"homepage": "https://github.com/legokichi/ts-ebml#readme",
"dependencies": {
"bigint-buffer": "^1.1.5",
"commander": "^12.0.0",
"ebml": "^3.0.0",
"ebml-block": "^1.1.2",
"events": "^3.3.0",
"int64-buffer": "^1.0.1",
"matroska": "^2.2.5",
"matroska-schema": "^2.1.0"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@types/empower": "^1.2.35",
"@types/node": "^20.11.19",
"@types/qunit": "^2.19.10",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"aliasify": "^2.1.0",
"browserify": "^17.0.0",
"empower": "^1.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"espower-cli": "^1.1.0",
"http-server": "^14.1.1",
"power-assert": "^1.6.1",
"power-assert-formatter": "^1.4.1",
"prettier": "^3.2.5",
"qunit": "^2.20.0",
"qunit-tap": "^1.5.1",
"rimraf": "^5.0.5",
"typedoc": "^0.25.3",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^5.2.2",
"uglify-js": "^3.17.4"
},
"bin": "./lib/cli.js",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"browserify": {
"transform": [
"aliasify"
]
},
"aliasify": {
"aliases": {
"ebml": "ebml/lib/ebml.js"
}
}
}