-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1009 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1009 Bytes
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
{
"name": "light-streamer",
"version": "0.0.2",
"description": "streaming video/audio files to browser with http-range header",
"main": "dist/LightStreamer.js",
"keywords": [
"node",
"express",
"stream"
],
"homepage": "https://altahery.com",
"repository": {
"type": "git",
"url": "git+https://github.com/KernelCode/light-streamer.git"
},
"bugs": {
"url": "https://github.com/KernelCode/light-streamer/issues"
},
"scripts": {
"dev": "gulp --gulpfile gulp.dev.js",
"build": "gulp --gulpfile gulp.build.js",
"test": "exit 0"
},
"files": [
"dist/",
"examples/"
],
"author": "Abdullah Altahery",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.14",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"typescript": "^4.5.5",
"gulp-livereload": "^4.0.2",
"nodemon": "^2.0.15"
},
"dependencies": {
"mime-types": "^2.1.34",
"throttle": "^1.0.3"
}
}