forked from legokichi/ts-ebml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.65 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
{
"name": "ts-ebml",
"version": "1.8.6",
"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; npm run reader",
"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",
"reader": "browserify lib/EBMLReader.js --standalone EBMLReader -o dist/EBMLReader.js",
"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",
"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": "5.0.4",
"commander": "^2.9.0",
"ebml": "^2.2.0",
"ebml-block": "^1.1.0",
"events": "^1.1.1",
"int64-buffer": "^0.1.9",
"matroska": "^2.2.3"
},
"devDependencies": {
"@types/commander": "^2.9.1",
"@types/node": "0.0.2",
"@types/power-assert-formatter": "^1.4.28",
"@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",
"qunit-tap": "^1.5.1",
"qunitjs": "^2.0.1",
"tslint": "^3.15.1",
"typedoc": "^0.5.3",
"typescript": "^2.4.0",
"watchify": "^3.7.0"
},
"bin": "./lib/cli.js",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
}