-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "@astronautlabs/scte104",
"version": "1.0.1",
"description": "Implementation of the SCTE-104 TCP/IP protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"doc": "docs"
},
"bin": {
"scte104": "dist/cli.js"
},
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "npm run test",
"test": "npm run build && node dist/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astronautlabs/scte104.git"
},
"keywords": [
"scte",
"scte-104",
"broadcast",
"signalling"
],
"author": {
"name": "Astronaut Labs, LLC.",
"url": "https://astronautlabs.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/astronautlabs/scte104/issues"
},
"homepage": "https://github.com/astronautlabs/scte104#readme",
"devDependencies": {
"@types/node": "^14.0.4",
"razmin": "^1.2.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.16",
"typescript": "^3.8.3"
},
"dependencies": {
"@alterior/command-line": "^3.0.0-rc.5",
"@alterior/platform-nodejs": "^3.0.2",
"@astronautlabs/bitstream": "^2.0.2",
"rxjs": "^6.6.3"
}
}