This repository has been archived by the owner on Jul 26, 2024. It is now read-only.
forked from legokichi/ts-ebml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.5 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
{
"name": "ts-ebml",
"version": "2.0.2",
"description": "ebml decoder and encoder",
"scripts": {
"setup": "npm install -g http-server;",
"init": "npm run update; npm run mkdir; npm run build",
"update": "npm run reset; npm update",
"reset": "rm -rf node_modules",
"mkdir": "mkdir lib dist 2>/dev/null",
"clean": "rm -rf lib/* dist/* test/*.js; mkdir -p dist",
"build": "npm run clean && tsc -p .; npm run browserify",
"start": "http-server . -s & tsc -w -p .& watchify lib/example_seekable.js -o test/example_seekable.js",
"stop": "killall -- node */tsc -w -p",
"browserify": "browserify lib/index.js --standalone EBML -o dist/EBML.js",
"watchify": "watchify lib/index.js --standalone EBML -o dist/EBMl.js -v",
"test": "tsc; espower lib/test.js > lib/test.tmp; mv -f lib/test.tmp lib/test.js; browserify lib/test.js -o test/test.js",
"example": "tsc; browserify lib/example_seekable.js -o test/example_seekable.js",
"examples": "tsc; for file in `find lib -name 'example_*.js' -type f -printf '%f\\n'`; do browserify lib/$file -o test/$file; done",
"examples_bsd": "tsc; for file in `find lib -name 'example_*.js' -type f -print`; do browserify lib/$(basename $file) -o test/$(basename $file); done",
"check": "tsc -w --noEmit -p ./",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json --type-check",
"fmt": "prettier -w ./src",
"doc": "typedoc --mode modules --out doc --disableOutputCheck"
},
"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": {
"buffer": "^6.0.3",
"commander": "^9.2.0",
"ebml": "^2.2.1",
"ebml-block": "^1.1.0",
"events": "^3.3.0",
"int64-buffer": "^1.0.1",
"matroska": "^2.2.4"
},
"devDependencies": {
"@types/qunit": "^2.0.31",
"browserify": "^13.1.0",
"empower": "^1.2.3",
"espower-cli": "^1.1.0",
"power-assert": "^1.4.4",
"power-assert-formatter": "^1.4.1",
"prettier": "^2.6.2",
"qunit-tap": "^1.5.1",
"qunitjs": "^2.4.0",
"tslint": "^5.13.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333",
"watchify": "^3.7.0"
},
"bin": "./lib/cli.js",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
}