-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "@bgoodman/video-preview",
"description": "A minimal library for creating preview content for video files.",
"keywords": [
"ffmpeg",
"video",
"thumbnail",
"preview"
],
"version": "1.1.9-beta",
"main": "lib/index.js",
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"build:docs": "npx typedoc --plugin typedoc-plugin-markdown",
"test": "./node_modules/.bin/jest"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.2.11",
"typescript": "^3.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b-goodman/video-preview.git"
},
"bugs": {
"url": "https://github.com/b-goodman/video-preview/issues"
},
"homepage": "https://github.com/b-goodman/video-preview#readme",
"directories": {
"doc": "docs",
"lib": "lib"
},
"author": "benjamin goodman",
"dependencies": {
"@types/fs-extra": "^8.0.1"
}
}