-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 939 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
{
"name": "http-streaming-server",
"version": "0.2.0",
"description": "Library that allows you to create http server and streaming content via providers",
"repository": {
"type": "git",
"url": "https://github.com/torrent-proxy/http-streaming-server.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"prebuild": "npm run clean",
"build": "./node_modules/.bin/tsc",
"preexamples/torrent-stream": "npm run build",
"examples/torrent-stream": "node ./lib/examples/torrent-stream",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "reefridge",
"license": "MIT",
"devDependencies": {
"@types/node": "^9.3.0",
"@types/torrent-stream": "0.0.5",
"typescript": "^2.6.2"
},
"dependencies": {
"http-attach": "^1.0.0",
"mime": "^2.2.0",
"range-parser": "^1.2.0",
"torrent-stream": "^1.0.3"
}
}