UNPKG

subtitle

Version:

Stream-based library for parsing and manipulating subtitles

77 lines (76 loc) 1.45 kB
{ "name": "subtitle", "version": "4.2.2", "description": "Stream-based library for parsing and manipulating subtitles", "repository": { "type": "git", "url": "https://github.com/gsantiago/subtitle.js" }, "keywords": [ "subtitle", "webvtt", "srt", "vtt", "captions", "subrip", "parse", "parser", "stringify", "validate", "validation", "stream", "streams", "read", "write", "map", "filter" ], "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "test:coverage": "tsdx test --coverage", "lint": "tsdx lint", "prepare": "tsdx build" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": false, "singleQuote": true, "trailingComma": "none" }, "author": "Guilherme Santiago", "module": "dist/subtitle.esm.js", "devDependencies": { "@types/split2": "^2.1.6", "husky": "^4.2.5", "tsdx": "^0.13.3", "tslib": "^2.0.1", "typescript": "^4.0.2" }, "jest": { "verbose": true }, "dependencies": { "@types/multipipe": "^3.0.0", "multipipe": "^4.0.0", "split2": "^3.2.2", "strip-bom": "^4.0.0" } }