forked from yusitnikov/fix-webm-duration
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "webm-fix-duration",
"version": "1.0.1",
"description": "navigator.mediaDevices.getUserMedia + MediaRecorder create WEBM files without duration metadata. This library appends missing metadata section right to the file blob.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "jest --passWithNoTests",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"__tests__/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mat-sz/webm-fix-duration.git"
},
"keywords": [],
"author": "Yuri Sitnikov <https://github.com/yusitnikov>",
"contributors": [
"Mat Sz <contact@matsz.dev>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mat-sz/webm-fix-duration/issues"
},
"homepage": "https://github.com/mat-sz/webm-fix-duration",
"devDependencies": {
"@types/jest": "^26.0.23",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}