-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "@audapolis/webvtt-writer",
"version": "1.0.6",
"description": "A small library to create WebVTT (and SRT) files",
"main": "dist/WebVtt.js",
"types": "./src/WebVtt.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'src/**/*'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audapolis/webvtt-writer.git"
},
"keywords": [
"webvtt",
"subtitles",
"typescript"
],
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/audapolis/webvtt-writer/issues"
},
"homepage": "https://github.com/audapolis/webvtt-writer#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"esbuild": "^0.12.28",
"esbuild-jest": "^0.5.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-unused-imports": "^1.1.4",
"jest": "^27.4.7",
"typescript": ">=3.3.1 <4.5.0",
"prettier": "^2.3.2"
}
}