-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "yellowstone",
"version": "3.0.4",
"description": "An RTSP client for node.js.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mbullington/yellowstone.git"
},
"author": "Michael Bullington <[email protected]>",
"license": "MIT",
"typings": "dist/index.d.ts",
"dependencies": {
"sdp-transform": "^2.14.1"
},
"scripts": {
"build": "tsc --project ./tsconfig.json",
"test": "jest",
"typedoc": "typedoc --out docs --name Yellowstone --theme markdown lib --readme none",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^10.12.18",
"@types/sdp-transform": "^2.4.5",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^28.1.3",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.25",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5"
}
}