forked from Eyevinn/node-srt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.08 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.08 KB
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
71
72
73
74
75
76
{
"name": "@eyevinn/srt",
"version": "0.6.0",
"description": "NodeJS native add-on SDK for Secure Reliable Transport (libSRT)",
"main": "index.js",
"scripts": {
"check-tsc": "tsc --build",
"build": "npm run build-lib && npm run build-gyp",
"build-gyp": "npm run gyp-clean && npm run gyp-rebuild",
"build-lib": "node scripts/build-deps-srt.js",
"clean": "del -f build ; del -f deps",
"gyp-clean": "node-gyp clean",
"gyp-rebuild": "node-gyp rebuild",
"gyp-rebuild-jn": "node-gyp rebuild -j $(echo \"console.log(require('os').cpus().length)\" | node)",
"install": "npm run clean && npm run build",
"lint": "eslint . --ext .js --ext .ts",
"postversion": "git push && git push --tags",
"test": "jasmine",
"test-jest": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eyevinn/node-srt.git"
},
"gypfile": true,
"author": "Eyevinn Technology AB <work@eyevinn.se>",
"contributors": [
"Jonas Rydholm Birmé <jonas.birme@eyevinn.se> (Eyevinn Technology AB)",
"Dillon Pentz <dillon@vodbox.io>",
"Stephan Hesse <stephan@emliri.com>"
],
"license": "MIT",
"engines": {
"npm": ">=7"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-plugin-jasmine": "^4.1.3",
"jasmine": "^3.5.0",
"jest": "^26.4.1",
"ts-jest": "^26.5.6",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"debug": "^4.1.1",
"del-cli": "^4.0.1",
"git-clone": "^0.1.0",
"node-addon-api": "^3.0.0",
"node-gyp": "^9.0.0",
"vparse": "^1.1.0"
},
"bugs": {
"url": "https://github.com/Eyevinn/node-srt/issues"
},
"homepage": "https://github.com/Eyevinn/node-srt#readme",
"directories": {
"example": "examples"
},
"keywords": [
"SRT",
"Secure",
"Reliable",
"Transport",
"Network",
"Protocol",
"UDP",
"Retransmission",
"Congestion",
"Control"
]
}