-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "frazy-parser",
"version": "2.10.2",
"description": "Parser for subtitles in different formats into frazy.me format. Also converter between subtitles types. (srt --> vtt etc)",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aparus/frazy-parser.git"
},
"keywords": [
"subtitles",
"captions",
"frazy",
"phrasal",
"player"
],
"author": "Aparus",
"license": "MIT",
"bugs": {
"url": "https://github.com/aparus/frazy-parser/issues"
},
"homepage": "https://github.com/aparus/frazy-parser#readme",
"devDependencies": {
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@rollup/plugin-babel": "^5.3.0",
"babel-plugin-external-helpers": "^6.22.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"gh-pages": "^3.2.3",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rollup": "^2.63.0",
"rollup-plugin-babel": "^4.4.0",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"string.prototype.matchall": "^4.0.3"
}
}