forked from tmarrinan/node-demux
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "node-demux",
"version": "1.1.0",
"description": "Video Demuxer",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/renambot-uic/node-demux.git"
},
"dependencies": {
"nan": "latest"
},
"scripts": {
"preinstall": "npm install node-pre-gyp",
"install": "node-pre-gyp rebuild --fallback-to-build",
"rebuild": "node-pre-gyp rebuild",
"package": "node-pre-gyp rebuild && node-pre-gyp package",
"publish": "node-pre-gyp rebuild && node-pre-gyp package && node-pre-gyp-github publish",
"publish-release": "node-pre-gyp rebuild && node-pre-gyp package && node-pre-gyp-github publish --release"
},
"binary": {
"module_name": "node_demux",
"module_path": "./build/Release/",
"host": "https://bitbucket.org/sage2/binaries/downloads/"
},
"devDependencies": {
"node-pre-gyp": "latest",
"node-pre-gyp-github": "latest"
},
"keywords": [
"video",
"demux",
"nan"
],
"author": "Thomas Marrinan",
"license": "BSD-3-Clause"
}