-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "batch-transcode-video",
"version": "2.0.0",
"description": "Batch transcode videos using the video_transcoding gem.",
"contributors": [
"Nick Wronski (https://github.com/nwronski)"
],
"keywords": [
"mkv",
"transcode",
"transcode-video"
],
"engine": "node >= 4.0.0",
"preferGlobal": true,
"bin": {
"batch-transcode-video": "bin/batch-transcode-video"
},
"files": [
"bin/",
"LICENSE",
"CHANGELOG.md",
"README.md",
"dist/"
],
"scripts": {
"build": "grunt"
},
"main": "dist/index.js",
"author": "Nick Wronski (https://github.com/nwronski)",
"repository": "git@github.com:nwronski/batch-transcode-video.git",
"bugs": {
"url": "https://github.com/nwronski/batch-transcode-video/issues"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.1",
"charm": "^1.0.2",
"cross-spawn-async": "^2.2.5",
"glob": "^7.1.5",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"shell-quote": "^1.7.2"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"grunt": "^1.0.4",
"grunt-babel": "^6.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-replace": "^1.0.1",
"load-grunt-tasks": "^3.5.2"
}
}