srt-validator
Version:
<h1 align="center">SrtValidator</h1>
66 lines (65 loc) • 1.66 kB
JSON
{
"name": "srt-validator",
"version": "6.0.4",
"description": "",
"main": "dist/index.js",
"engines": {
"node": ">= 12.22.0"
},
"scripts": {
"build": "./node_modules/.bin/webpack && tsc",
"prepublishOnly": "npm run build",
"prettier": "./scripts/prettier.sh",
"lint:src": "eslint src/** --ext .ts",
"lint:tests": "eslint tests/** --ext .js",
"test": "jest",
"test:watch": "npm run test -- --watch",
"bump:patch": "npm version patch --no-git-tag-version && git add package.json"
},
"precommit": [
"prettier",
"lint:src",
"lint:tests",
"test",
"bump:patch"
],
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^27.4.6",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.3.4",
"jest": "^27.4.7",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"babel": {
"presets": [
"@babel/env"
]
},
"keywords": [
"module",
"util",
"parser",
"subtitles",
"srt"
],
"author": "Sean Johnson & Tao Ning & Sam Lau",
"license": "BSD-3-Clause",
"homepage": "https://github.com/taoning2014/srt-validator",
"repository": {
"type": "git",
"url": "git@github.com:taoning2014/srt-validator.git"
}
}