-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.3 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.3 KB
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
{
"name": "ffmpeg-loop",
"description": "Instantiate ffmpeg in looping mode.",
"version": "3.0.1",
"author": "Tim Allen <tim@noblesamurai.com>",
"license": "BSD",
"main": "src/index.js",
"scripts": {
"coverage": "c8 npm test",
"pretest": "semistandard --env mocha",
"test": "mocha --recursive test",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md src/index.js"
},
"homepage": "https://github.com/noblesamurai/ffmpeg-loop",
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/ffmpeg-loop.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/ffmpeg-loop/issues"
},
"files": [
"src"
],
"dependencies": {
"debug": "^4.1.1",
"fluent-ffmpeg": "^2.1.2",
"lodash.last": "^3.0.0",
"lodash.round": "^4.0.4",
"ow": "^0.17.0"
},
"devDependencies": {
"c8": "^7.7.3",
"chai": "^4.3.4",
"dirty-chai": "^2.0.1",
"ffmpeg-static": "^4.0.1",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^9.0.1",
"p-event": "^4.1.0",
"semistandard": "*"
},
"peerDependencies": {
"ffmpeg-static": "^4"
},
"keywords": [],
"c8": {
"all": true,
"include": [
"src"
],
"reporter": [
"lcov",
"text"
]
},
"semistandard": {
"env": [
"mocha"
]
}
}