-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "mpd-m3u8-to-json",
"version": "0.1.3",
"description": "parse mpeg dash manifests(.mpd) to json,parse hls manifests(.m3u8) to json",
"main": "libs/vparser.min.js",
"types": "types/index.d.ts",
"scripts": {
"build": "webpack --config ./scripts/webpack.config.js",
"build:types": "tsc src/index.ts --declaration --declarationDir types --emitDeclarationOnly",
"test": "mocha -r ts-node/register -w --watch-files src,test test/**",
"check": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/xiyuyizhi/mpd-m3u8-to-json.git"
},
"keywords": [
"dash",
"hls",
"mpd parser",
"m3u8 parser",
"xml parser"
],
"author": "xiyuyizhi",
"license": "ISC",
"bugs": {
"url": "https://github.com/xiyuyizhi/mpd-m3u8-to-json/issues"
},
"homepage": "https://github.com/xiyuyizhi/mpd-m3u8-to-json#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.31",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"mocha-jsdom": "^2.0.0",
"sinon": "^9.0.1",
"terser-webpack-plugin": "^2.3.5",
"ts-mocha": "^7.0.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}