-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 934 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
39
40
{
"name": "@johnny.reina/convert-srt",
"version": "0.2.1",
"description": "Convert SRT file to JS objects",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"prepublishOnly": "npm run rebuild"
},
"keywords": [
"srt",
"subtitle"
],
"author": "Johnny Reina <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.7",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"files": [
"LICENSE",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/jreina/convert-srt"
},
"dependencies": {
"node-webvtt": "^1.9.3"
}
}