-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 915 Bytes
/
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
{
"name": "get-media-duration",
"version": "1.0.1",
"description": "Get the duration of an media file (audio, video) from local storage or url",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint ."
},
"keywords": [
"audio",
"duration",
"media",
"ffprobe",
"ffmpeg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vickvasquez/get-media-duration.git"
},
"author": "Vick Vasquez <vasjvic44@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@vickvasquez/ts-match": "^1.0.4",
"execa": "^5.1.1"
},
"files": ["dist/**/*"]
}