{
  "name": "@xrange/core",
  "description": "The very core of `xrange`, provided as a separate package",
  "version": "1.0.2",
  "license": "MIT",
  "keywords": [
    "generator",
    "iterate",
    "iterator",
    "python",
    "range",
    "xrange"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "jest": {
    "verbose": true,
    "preset": "ts-jest",
    "resetMocks": true,
    "rootDir": ".",
    "roots": [
      "<rootDir>/test"
    ],
    "testMatch": [
      "<rootDir>/test/**/*.spec.ts"
    ],
    "collectCoverage": true,
    "collectCoverageFrom": [
      "<rootDir>/src/**/*.ts"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "coverageDirectory": "<rootDir>/coverage",
    "cacheDirectory": "<rootDir>/test/.cache",
    "testEnvironment": "node",
    "errorOnDeprecated": true
  },
  "scripts": {
    "test": "jest --no-cache",
    "start": "node --require ts-node/register src",
    "clean": "rimraf dist/*",
    "prebuild": "npm run clean",
    "build": "tsc --project ./tsconfig.prod.json",
    "dev": "tsc --project ./tsconfig.dev.json",
    "prepublishOnly": "npm run build && npm test && git push --follow-tags"
  },
  "devDependencies": {
    "@types/jest": "25.2.1",
    "@types/node": "13.9.0",
    "jest": "25.5.4",
    "rimraf": "3.0.2",
    "ts-jest": "25.5.1",
    "ts-node": "8.6.2",
    "typescript": "3.8.3"
  }
}
