forked from 75lb/handbrake-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.2 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
55
56
57
58
{
"name": "handbrake-js",
"author": "Lloyd Brookes <[email protected]>",
"version": "2.2.2",
"description": "Handbrake for node.js. Brings video encoding.",
"repository": "https://github.com/75lb/handbrake-js.git",
"main": "./lib/handbrake-js.js",
"license": "MIT",
"bin": {
"handbrake": "bin/cli.js"
},
"keywords": [
"handbrake",
"encode",
"transcode",
"video",
"mp4",
"m4v",
"avi",
"h.264",
"h.265",
"vp8",
"mp3"
],
"engines": {
"node": ">=0.10.0"
},
"files": [
"bin/cli.js",
"lib",
"scripts"
],
"scripts": {
"test": "test-runner test/*.js",
"postinstall": "node scripts/install.js",
"ubuntu-setup": "./scripts/install-ubuntu.sh",
"docs": "jsdoc2md -t jsdoc2md/README.hbs lib/*.js > README.md; echo"
},
"dependencies": {
"ansi-escape-sequences": "^3.0.0",
"command-line-args": "^3.0.5",
"object-to-spawn-args": "^1.1.0",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"unzip": "~0.1",
"usage-stats": "^0.8.5"
},
"devDependencies": {
"core-assert": "^0.2.1",
"jsdoc-to-markdown": "^3.0.0",
"test-runner": "^0.3.0"
},
"standard": {
"envs": [
"node"
]
}
}