-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
70 lines (70 loc) · 1.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@eyevinn/srt",
"version": "0.8.3",
"description": "Nodejs bindings for Secure Reliable Transport SDK",
"main": "index.js",
"scripts": {
"install": "npm run build-srt && npm run rebuild",
"build-srt": "node scripts/build-srt-sdk.js",
"rebuild": "node-gyp rebuild",
"rebuild-jn": "node-gyp rebuild -j $(echo \"console.log(require('os').cpus().length)\" | node)",
"clean": "node-gyp clean",
"test": "jasmine",
"test-jest": "jest --runInBand --detectOpenHandles",
"lint": "eslint . --ext .js --ext .ts",
"check-tsc": "tsc examples/srt.ts --outDir ./tsc-lib",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eyevinn/node-srt.git"
},
"gypfile": true,
"author": "Eyevinn Technology AB <[email protected]>",
"contributors": [
"Jonas Rydholm Birmé <[email protected]> (Eyevinn Technology AB)",
"Dillon Pentz <[email protected]>",
"Stephan Hesse <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-plugin-jasmine": "^4.1.1",
"jasmine": "^3.5.0",
"jest": "^26.4.1",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"debug": "^4.1.1",
"del": "^5.1.0",
"diff": "^5.1.0",
"git-clone": "^0.1.0",
"node-addon-api": "^5.0.0",
"node-gyp": "^9.3.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"
]
}