-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 961 Bytes
/
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": "@astronautlabs/rtp",
"version": "1.0.1",
"description": "An RTP implementation for Node.js and the browser ",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"directories": {
"doc": "doc",
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "node scripts/build.js",
"build:lib": "tsc",
"install": "npm run build",
"prepublishOnly": "npm run build:lib",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astronautlabs/rtp.git"
},
"keywords": [
"rtp",
"network",
"media",
"sdp"
],
"author": "Astronaut Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/astronautlabs/rtp/issues"
},
"homepage": "https://github.com/astronautlabs/rtp#readme",
"dependencies": {
"mkdirp": "^1.0.4"
},
"devDependencies": {
"@types/node": "^14.14.35",
"typescript": "^4.2.3"
}
}