{
  "name": "chomex",
  "version": "2.2.0",
  "description": "Chrome Extension Routing Kit",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "start": "tsc --watch",
    "build": "rm -rf ./lib && tsc -p ./tsconfig.json",
    "release": "./node_modules/.bin/coffee ./scripts/release.coffee",
    "test": "tslint ./src/**/*.ts && tslint ./tests/**/*.ts && jest",
    "ci": "npm run test -- --coverage && cat ./coverage/lcov.info | coveralls"
  },
  "repository": "https://github.com/otiai10/chomex.git",
  "keywords": [
    "chrome"
  ],
  "author": "otiai10",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/otiai10/chomex/issues"
  },
  "homepage": "https://github.com/otiai10/chomex#readme",
  "devDependencies": {
    "@types/chai": "^4.1.2",
    "@types/jest": "^25.1.5",
    "@types/should": "^13.0.0",
    "chai": "^4.1.2",
    "coffee-script": "^1.12.7",
    "coveralls": "^3.0.0",
    "jest": "^25.2.7",
    "jest-cli": "^25.2.7",
    "shelljs": "^0.8.1",
    "ts-jest": "^25.3.0",
    "tslint": "^5.9.1",
    "typescript": "^3.8.3"
  },
  "jest": {
    "verbose": true,
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "tests/.*-test\\.ts$",
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "unmockedModulePathPatterns": [
      "<rootDir>/src/chomex"
    ],
    "setupFilesAfterEnv": [
      "./tests/mock/setup-script.ts"
    ],
    "setupFiles": [
      "./tests/mock/chrome.ts"
    ],
    "collectCoverageFrom": [
      "src/**/*.ts",
      "!src/index.ts",
      "!test"
    ]
  }
}
