{
  "name": "ts-prime",
  "version": "1.0.2",
  "description": "A utility library for JavaScript and Typescript.",
  "main": "dist/commonjs/index.js",
  "module": "dist/es/index.js",
  "jsnext:main": "dist/es/index.js",
  "sideEffects": false,
  "devDependencies": {
    "@types/jest": "^22.2.3",
    "jest": "^22.4.3",
    "marked": "^0.4.0",
    "prettier": "^2.0.1",
    "ts-docflux": "^0.0.13",
    "ts-jest": "^22.4.5",
    "ts-node": "^8.4.1",
    "typedoc": "0.11.1",
    "typescript": "^3.8.3"
  },
  "scripts": {
    "prepublish": "yarn test && yarn build",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "prettier": "prettier 'src/**/*.ts' --write",
    "build": "cd ./scripts && ./build.sh && yarn ts-docflux"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/digimuza/ts-prime"
  },
  "tsDocFluxConfig": {
    "mainEntryPointFilePath": "./dist/commonjs/index.d.ts"
  },
  "keywords": [
    "utils",
    "fp",
    "functional",
    "programming",
    "typescript"
  ],
  "author": "Andrius Mozūraitis",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/digimuza/ts-prime/issues"
  },
  "homepage": "https://digimuza.github.io/ts-prime",
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "coverageDirectory": "./docs/coverage",
    "testRegex": "/src/.*.test.(jsx?|tsx?)$",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/dist/"
    ],
    "collectCoverageFrom": [
      "src/**/*.tsx",
      "src/**/*.ts"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
