forked from goldvideo/demuxer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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": "demuxer",
"version": "1.0.1",
"description": "A utility for transmux ts/mp4",
"main": "src/index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"dev": "webpack --config __compile/webpack.dev.conf.js --watch",
"production": "webpack --config __compile/webpack.prod.conf.js",
"test": "karma start",
"doc": "jsdoc ./src/ -c doc/jsdoc.json",
"esm": "rollup -c"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^7.4.0",
"@commitlint/config-conventional": "^7.3.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.18",
"commitizen": "^3.0.5",
"core-js": "^3.2.1",
"eslint": "^6.1.0",
"filewatcher": "^3.0.1",
"git-cz": "^3.2.1",
"husky": "^1.3.1",
"jasmine-core": "^3.4.0",
"jsdoc": "^3.5.5",
"karma": "^3.1.4",
"karma-chrome-launcher": "^3.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^4.0.2",
"lint-staged": "^8.1.4",
"rollup": "^1.27.8",
"webpack": "4.26.0",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.2",
"webworkify-webpack": "^2.1.3"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/goldvideo/demuxer.git"
},
"keywords": [
"demux",
"mpegts",
"ts",
"mp4"
],
"bugs": {
"url": "https://github.com/goldvideo/demuxer/issues"
},
"homepage": "https://github.com/goldvideo/demuxer#readme"
}