{
  "name": "epub-parse",
  "version": "1.0.9",
  "description": "A powerful yet easy-to-use epub parser",
  "main": "build/lib/epubParser.js",
  "scripts": {
    "build:types": "tsc --outDir build/js --declaration --declarationDir build/types",
    "prebuild": "npm run clean",
    "build": "npm run webpack -- --config config/webpack.config.js --progress",
    "postbuild": "npm run build:types",
    "clean": "rimraf build",
    "webpack": "webpack",
    "watch:lib": "npm run webpack -- --config config/webpack.config.js --progress --watch",
    "debug": "nodemon --debug=9229 --inspect src/test.js",
    "test": "jest --no-cache",
    "watch:test": "npm test -- --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/davidka/epub-parser.git"
  },
  "keywords": [
    "epub-parser",
    "parser",
    "epub",
    "easy",
    "book",
    "file"
  ],
  "author": "gaoxiaoliangz",
  "contributors": [
    "davidka"
  ],
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/davidka/epub-parser/issues"
  },
  "homepage": "https://github.com/davidka/epub-parser#readme",
  "dependencies": {
    "jsdom": "9.12.0",
    "lodash": "^4.17.2",
    "node-zip": "^1.1.1",
    "to-markdown": "^3.0.3",
    "typescript": "2.3.4",
    "xml2js": "^0.4.17"
  },
  "devDependencies": {
    "@types/expect.js": "^0.3.28",
    "@types/express": "^4.0.35",
    "@types/lodash": "^4.14.43",
    "@types/mocha": "^2.2.41",
    "@types/node": "0.0.2",
    "@types/xml2js": "0.0.32",
    "app-root-path": "^2.0.1",
    "babel-cli": "^6.18.0",
    "babel-core": "^6.18.2",
    "babel-jest": "^20.0.3",
    "babel-loader": "^7.0.0",
    "babel-plugin-istanbul": "^2.0.3",
    "babel-plugin-lodash": "^3.1.2",
    "babel-plugin-syntax-async-functions": "^6.5.0",
    "babel-plugin-transform-es2015-classes": "^6.24.1",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
    "babel-plugin-transform-regenerator": "^6.6.5",
    "babel-plugin-transform-runtime": "^6.15.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-es2015-no-commonjs": "0.0.2",
    "babel-preset-react": "^6.1.18",
    "babel-preset-stage-2": "^6.18.0",
    "babel-register": "^6.18.0",
    "coveralls": "^2.11.15",
    "cross-env": "^3.1.3",
    "dotenv": "^4.0.0",
    "expect": "^1.14.0",
    "expect.js": "^0.3.1",
    "express": "^4.15.3",
    "jest": "^20.0.4",
    "lodash-webpack-plugin": "^0.10.3",
    "mocha": "^3.4.2",
    "promise": "^7.1.1",
    "rimraf": "^2.5.1",
    "source-map-support": "^0.4.15",
    "ts-jest": "^20.0.4",
    "ts-loader": "^2.3.0",
    "ts-node": "^3.0.4",
    "tslint": "4.5.1",
    "vrsource-tslint-rules": "^5.1.0",
    "webpack": "^2.6.0",
    "webpack-node-externals": "^1.6.0"
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "setupFiles": [
      "<rootDir>/config/polyfills.js"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]"
    ],
    "collectCoverageFrom": [
      "src/**/*.{ts,tsx}"
    ],
    "testRegex": "(/__test__/.*|\\.(test|spec))\\.(ts|tsx)$",
    "modulePaths": [
      "src"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ]
  }
}
