forked from 75lb/handbrake-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.21 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 <75pound@gmail.com>",
"version": "3.0.8",
"description": "Handbrake for node.js. Brings video encoding.",
"repository": "https://github.com/75lb/handbrake-js.git",
"license": "MIT",
"bin": {
"handbrake": "bin/cli.js"
},
"keywords": [
"handbrake",
"encode",
"transcode",
"video",
"mp4",
"m4v",
"avi",
"h.264",
"h.265",
"vp8",
"mp3"
],
"engines": {
"node": ">=4.0.0"
},
"files": [
"bin/cli.js",
"lib",
"scripts",
"index.js"
],
"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 index.js > README.md; echo"
},
"dependencies": {
"ansi-escape-sequences": "^4.0.1",
"command-line-args": "^5.0.2",
"decompress": "^4.2.0",
"node-version-matches": "^1.0.1",
"object-to-spawn-args": "^1.1.1",
"request": "^2.88.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"jsdoc-to-markdown": "^4.0.1",
"test-runner": "^0.5.1",
"test-runner-counter": "^0.1.2"
},
"standard": {
"envs": [
"node"
]
}
}