-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 837 Bytes
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
{
"name": "ism-parser",
"version": "0.3.0",
"description": "Library for parsing ISM manifest file",
"main": "index.js",
"scripts": {
"debug": "node --inspect=9229 test/output",
"test": "nyc mocha test/unit --recursive",
"test:nonyc": "mocha test/unit --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Batuzz/ism-parser.git"
},
"keywords": [
"ism",
"parser",
"ism-parser",
"HSS",
"smooth",
"streaming"
],
"author": "Bartosz Studnik <wellski15@gmail.com>",
"license": "ISC",
"dependencies": {
"crypto-js": "^4.0.0",
"fast-xml-parser": "^3.17.4",
"url-join": "^4.0.1"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"sinon": "^9.2.1"
}
}