-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "rtsp-streaming-server",
"version": "2.1.0",
"description": "Lightweight RTSP/RTP streaming media server written in Javascript",
"main": "build/index.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run type-check && npm run build:js",
"build:js": "babel src --out-dir build --extensions '.ts' --source-maps inline",
"coverage": "jest --coverage --env=node",
"lint": "tslint --project tsconfig.json",
"start": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --emitDeclarationOnly"
},
"files": [
"build"
],
"keywords": [],
"author": "Chris Wiggins <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"basic-auth": "^2.0.1",
"debug": "^4.1.1",
"rtsp-server": "^1.2.2",
"uuid": "^3.3.3",
"winston": "^2.4.4"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/basic-auth": "^1.1.2",
"@types/debug": "^4.1.5",
"@types/node": "^11.13.19",
"@types/uuid": "^3.4.5",
"lint-staged": "^8.2.1",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/chriswiggins/rtsp-streaming-server.git"
},
"types": "build/index.d.ts"
}