-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 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
{
"name": "vtt-adjust",
"version": "1.0.2",
"description": "Move and scale all timecodes in a WebVTT file.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha",
"prepublish": "node_modules/browserify/bin/cmd.js web.js -o build/vtt-adjust.js && node_modules/uglify/bin/uglify -s build/vtt-adjust.js -o build/vtt-adjust.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/deestan/vtt-adjust.git"
},
"keywords": [
"webvtt",
"vtt",
"adjust"
],
"author": {
"name": "Helge Skogly Holm",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/deestan/vtt-adjust/issues"
},
"homepage": "https://github.com/deestan/vtt-adjust",
"devDependencies": {
"browserify": "^11.0.1",
"mocha": "^2.2.5",
"randy": "^1.5.1",
"uglify": "^0.1.5"
}
}