-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.52 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
{
"name": "remote-ffprobe",
"description": "ffprobe a url.",
"version": "5.0.1",
"homepage": "https://github.com/noblesamurai/remote-ffprobe",
"author": {
"name": "Tim Allen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/remote-ffprobe.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/remote-ffprobe/issues"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/noblesamurai/remote-ffprobe/blob/master/LICENSE"
}
],
"main": "src/index",
"scripts": {
"coverage": "nyc -a -c -r html -r text -r lcov npm test",
"pretest": "xo",
"test": "mocha --recursive --exit test",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md src/index.js"
},
"dependencies": {
"fluent-ffmpeg": "^2.1.2",
"got": "^9.5.1",
"retriable-download": "^4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^4.0.1",
"ffprobe-static": "^3.0.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^7.0.0",
"nock": "^11.7.1",
"nyc": "^15.0.0",
"xo": "^0.33.1"
},
"files": [
"src"
],
"keywords": [],
"semistandard": {
"env": [
"mocha"
]
},
"xo": {
"env": "mocha",
"extends": "semistandard"
},
"optionalDependencies": {
"ffprobe-static": "^3.0.0"
}
}