-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.07 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
{
"name": "kelvinadon",
"version": "0.2.7",
"description": "Streaming MXF library for Node.js.",
"main": "index.js",
"scripts": {
"test": "tape test/*.js",
"lint": "eslint **/*.js",
"lint-fix": "eslint --fix **/*.js",
"update-dicts": "node util/updateRegisters.js; node util/makeMXFDefs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Streampunk/kelvinadon.git"
},
"keywords": [
"MXF",
"streaming",
"IMF",
"DPP",
"reactive"
],
"author": "Streampunk Media <[email protected]> (http://www.streampunk.media)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Streampunk/kelvinadon/issues"
},
"homepage": "https://github.com/Streampunk/kelvinadon#readme",
"dependencies": {
"highland": "^2.13.5",
"util.promisify": "^1.0.1",
"uuid": "^2.0.2",
"xml2js": "^0.4.23",
"yargs": "^11.1.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-google": "^0.9.1",
"tape": "^4.13.2"
},
"bin": {
"kelvinadump": "./kelvinadump.js"
}
}