{
  "name": "@kinokabaret/flicks",
  "version": "1.0.2",
  "description": "A simple node module to calculate flicks for video and audio pipelines with some helpful sanity checks.",
  "main": "index.js",
  "eslintConfig": {
    "root": true,
    "parserOptions": {
      "ecmaVersion": 6,
      "sourceType": "module"
    },
    "env": {
      "browser": true,
      "node": true
    },
    "rules": {
      "indent": [
        "error",
        4
      ],
      "linebreak-style": [
        "error",
        "unix"
      ],
      "quotes": [
        "error",
        "single"
      ],
      "semi": [
        "error",
        "never"
      ],
      "comma-dangle": [
        "error",
        "never"
      ],
      "no-cond-assign": [
        "error",
        "always"
      ],
      "no-console": "off"
    }
  },
  "scripts": {
    "pretest": "eslint --ignore-path .gitignore index.js",
    "test": "mocha --reporter spec",
    "cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
    "generate-docs": "node_modules/jsdoc -o docs --configure .jsdoc.json --verbose"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nothingismagick/node-flicks.git"
  },
  "keywords": [
    "flicks",
    "video",
    "audio",
    "timestamp"
  ],
  "author": "nothingismagick <daniel@kinokabaret.com> (https://kinokabaret.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nothingismagick/node-flicks/issues"
  },
  "homepage": "https://nothingismagick.github.io/node-flicks/",
  "devDependencies": {
    "babel-eslint": "^8.2.2",
    "chai": "^4.1.2",
    "codecov": "^3.0.0",
    "coveralls": "^3.0.0",
    "eslint": "^4.18.2",
    "foodoc": "0.0.8",
    "istanbul": "^0.4.5",
    "jsdoc": "^3.5.5",
    "jsdoc-oblivion": "0.0.9",
    "mocha": "^5.0.4",
    "tui-jsdoc-template": "^1.2.2"
  },
  "directories": {
    "doc": "docs",
    "test": "test"
  },
  "dependencies": {}
}
