-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
28 lines (28 loc) · 822 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
{
"name": "subtitles-parser",
"description": "NodeJS Parser for SubRip subtitles",
"version": "0.0.2",
"author": "bazh <[email protected]>",
"license": "MIT",
"keywords": [
"subtitles",
"subtitle",
"srt",
"subrip",
"subtitles parser",
"subtitle parser"
],
"homepage": "https://github.com/bazh/subtitles-parser",
"bugs": "https://github.com/bazh/subtitles-parser/issues",
"repository": { "type": "git", "url": "https://github.com/bazh/subtitles-parser" },
"main": "index.js",
"devDependencies": { "mocha": "*", "should": "*" },
"engines": { "node": "*" },
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"make": "uglifyjs -cmo subtitles.parser.min.js index.js"
}
}