forked from gsantiago/subtitle.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.25 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
50
51
52
53
54
{
"name": "subtitle",
"version": "2.0.0",
"description": "Parse and manipulate SRT (SubRip)",
"repository": {
"type": "git",
"url": "https://github.com/gsantiago/subtitle.js"
},
"main": "./dist/subtitle.bundle.js",
"scripts": {
"test": "npm run lint && npm run ava",
"ava": "npm run build && ava test/*.test.js",
"lint": "standard subtitle.js lib/*.js test/*.test.js",
"coverage": "nyc npm test",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "webpack"
},
"keywords": [
"subtitle",
"webvtt",
"srt",
"captions",
"subrip",
"parser",
"stringify"
],
"engines": {
"node": ">= 6"
},
"author": "Guilherme Santiago",
"license": "MIT",
"standard": {
"parser": "babel-eslint"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.11.15",
"fs-promise": "^1.0.0",
"glob-contents": "0.0.3",
"nyc": "^10.0.0",
"pify": "^3.0.0",
"standard": "^8.0.0",
"webpack": "^3.11.0"
},
"dependencies": {
"zero-fill": "^2.2.3"
}
}