{
  "name": "illuminate-js",
  "version": "1.0.0-alpha.2",
  "description": "Syntax Highlighting for NodeJS",
  "main": "./lib/index.js",
  "module": "./esm/index.js",
  "typings": "./lib/index.d.ts",
  "files": [
    "esm",
    "lib",
    "themes"
  ],
  "scripts": {
    "test": "jest --no-cache",
    "coverage": "jest --no-cache --coverage",
    "build": "yarn run prebuild && yarn run build:cjs && yarn run build:esm && yarn run postbuild",
    "prebuild": "node scripts/build-index.js",
    "postbuild": "node scripts/copy-css.js",
    "build:esm": "rimraf ./esm && tsc --target es6 --module es6 --outDir ./esm",
    "build:cjs": "rimraf ./lib && tsc --target es6 --module commonjs --outDir ./lib",
    "prepublishOnly": "yarn test && yarn run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vkbansal/illuminate-js.git"
  },
  "author": "Vivek Kumar Bansal <contact@vkbansal.me>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vkbansal/illuminate-js/issues"
  },
  "homepage": "https://github.com/vkbansal/illuminate-js#readme",
  "devDependencies": {
    "@types/jest": "^21.1.8",
    "fs-extra": "^5.0.0",
    "glob": "^7.1.2",
    "jest": "^22.0.4",
    "rimraf": "^2.6.2",
    "ts-jest": "^22.0.0",
    "typescript": "^2.6.1"
  },
  "jest": {
    "testMatch": [
      "**/?(*.)(spec|test).ts?(x)"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "roots": [
      "<rootDir>/src"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "collectCoverageFrom": [
      "**/*.{ts,tsx}",
      "!**/__tests__/**"
    ],
    "mapCoverage": true
  }
}
