-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.32 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": "get-media-dimensions",
"version": "2.0.2",
"description": "get video, image or audio dimensions",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"jsdoc": "jsdoc-md",
"coverage": "nyc npm test",
"pretest": "semistandard",
"test": "mocha --recursive test"
},
"repository": {
"url": "git://github.com/noblesamurai/get-media-dimensions.git",
"type": "git"
},
"author": "Andrew Harris <andrew@noblesamurai.com>",
"license": "BSD-3-Clause",
"dependencies": {
"ffprobe-client": "^1.1.6",
"got": "^11.1.4"
},
"peerDependencies": {
"ffprobe-static": "^3.0.0",
"sharp": ">=0.25 <1"
},
"peerDependenciesMeta": {
"ffprobe-static": {
"optional": true
}
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"ffprobe-static": "^3.0.0",
"finalhandler": "^1.1.2",
"jsdoc-md": "^6.0.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"semistandard": "^14.0.0",
"serve-static": "^1.14.1",
"sharp": ">=0.25 <1"
},
"nyc": {
"include": [
"src"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true
},
"semistandard": {
"env": [
"mocha"
]
},
"optionalDependencies": {
"ffprobe-static": "^3.0.0"
}
}