-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "krtp",
"version": "3.2.1",
"description": "Node implementation of rtp protocol. RFC 3550",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/1995parham/krtp"
},
"author": "Parham Alvani <parham.alvani@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/1995parham/krtp/issues"
},
"homepage": "https://github.com/1995parham/krtp#readme",
"keywords": [
"rtp",
"rtcp",
"rtp-session",
"rtp-packet",
"rfc-3550"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc -b",
"test": "jest --coverage",
"lint": "eslint 'lib/**/*.ts'"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"typescript": "^3.2.1"
},
"dependencies": {
"rxjs": "^6.3.3"
}
}