This repository has been archived by the owner on Dec 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
76 lines (76 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "h265ize",
"version": "0.5.0",
"mode": "development",
"description": "h265ize is a fire and forget weapon. A nodejs utility utilizing ffmpeg to encode large quantities of videos with the hevc codec.",
"main": "h265ize",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec test.js"
},
"bin": "h265ize",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FallingSnow/h265ize.git"
},
"keywords": [
"video",
"convert",
"encode",
"library",
"transcode"
],
"author": "Ayrton Sparling",
"license": "MIT",
"bugs": {
"url": "https://github.com/FallingSnow/h265ize/issues"
},
"homepage": "https://github.com/FallingSnow/h265ize#readme",
"dependencies": {
"bluebird": "^3.4.6",
"chokidar": "^1.6.1",
"colors": "^1.1.2",
"filesize": "^3.3.0",
"fluent-ffmpeg": "^2.1.0",
"fs-extra": "^1.0.0",
"gpu-info": "0.0.1",
"hasbin": "^1.2.3",
"keypress": "^0.2.1",
"local-git-sync": "^1.8.3",
"lodash": "^4.16.6",
"long-stack-traces": "^0.1.2",
"mathjs": "^3.7.0",
"memorystream": "^0.3.1",
"mime": "^1.3.4",
"moment": "^2.16.0",
"moment-duration-format": "^1.3.0",
"optional": "^0.1.3",
"promise-pauser": "^1.0.0",
"recursive-readdir": "^2.1.0",
"stack-trace": "0.0.9",
"strip-ansi": "^3.0.1",
"winston": "^2.3.0",
"yargs": "^6.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"strict": [
2,
"never"
]
}
}
}