{
  "name": "srt-cut",
  "version": "2.0.0",
  "description": "Cut up SRT subtitle file into parts",
  "main": "index.js",
  "author": {
    "name": "Overlook Motel"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/overlookmotel/srt-cut.git"
  },
  "bugs": {
    "url": "https://github.com/overlookmotel/srt-cut/issues"
  },
  "dependencies": {
    "fs-extra": "^9.0.0",
    "pad-left": "^2.1.0",
    "subtitle": "^2.0.3"
  },
  "devDependencies": {
    "@overlookmotel/eslint-config": "^6.0.1",
    "@overlookmotel/eslint-config-jest": "^3.0.1",
    "@overlookmotel/eslint-config-node": "^1.0.2",
    "coveralls": "^3.0.11",
    "cross-env": "^7.0.2",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-plugin-eslint-comments": "^3.1.2",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-jest": "^23.8.2",
    "eslint-plugin-node": "^11.1.0",
    "jest": "^25.2.4"
  },
  "keywords": [
    "srt",
    "subtitle",
    "subtitles",
    "subrip",
    "cut"
  ],
  "scripts": {
    "test": "npm run lint && npm run test-main",
    "lint": "eslint '*.js' '.*.js' '**/*.js' '**/.*.js'",
    "lint-fix": "eslint '*.js' '.*.js' '**/*.js' '**/.*.js' --fix",
    "test-main": "cross-env NODE_ENV=production jest",
    "cover": "npm run cover-main && rm -rf coverage",
    "coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
    "cover-main": "cross-env COVERAGE=true NODE_ENV=production jest --coverage",
    "ci": "if [ $COVERAGE ]; then npm run coveralls; else npm test; fi"
  },
  "engines": {
    "node": ">=10"
  },
  "readmeFilename": "README.md",
  "license": "MIT"
}
