forked from boonya/rtsp-video-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "rtsp-video-recorder",
"version": "2.2.0",
"description": "Provide an API to record rtsp video stream to filesystem.",
"main": "dist/recorder.js",
"types": "dist/recorder.d.ts",
"files": [
"dist/*"
],
"repository": "https://github.com/boonya/rtsp-video-recorder",
"engines": {
"npm": ">=7",
"node": ">=12"
},
"scripts": {
"example": "tsc -p tsconfig.example.json && node example/example.js",
"types": "tsc --noemit",
"eslint": "eslint .",
"lint": "npm run types && npm run eslint --",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc"
},
"keywords": [
"rtsp",
"video",
"recorder",
"stream",
"webcam"
],
"author": "Serhii [boonya] Buinytskyi",
"license": "MIT",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}