{
  "name": "radis",
  "version": "2.0.0",
  "description": "A Javascript dependency injection base on Angular.js API.",
  "keywords": [],
  "main": "dist/radis.umd.js",
  "module": "dist/radis.es5.js",
  "typings": "dist/types/radis.d.ts",
  "files": [
    "dist"
  ],
  "author": "Jerome Quere <contact@jeromequere.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/jerome-quere/radis"
  },
  "license": "MIT",
  "engines": {
    "node": ">=10.0.0"
  },
  "scripts": {
    "lint-src": "tslint -t codeFrame --project tsconfig.json './src/**/*.ts'",
    "lint-test": "tslint -t codeFrame --project test.tsconfig.json './test/**/*.ts'",
    "lint": "npm run lint-src && npm run lint-test",
    "prebuild": "rimraf dist",
    "build": "tsc && tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts",
    "start": "tsc -w & rollup -c rollup.config.ts -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:prod": "npm run lint && npm run test -- --coverage --no-cache",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "semantic-release-prepare": "ts-node tools/semantic-release-prepare"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write --no-semi --single-quote"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "validate-commit-msg": {
      "types": "conventional-commit-types",
      "helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
    }
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "collectCoverage": true
  },
  "devDependencies": {
    "@types/jest": "^22.1.1",
    "@types/node": "^9.4.0",
    "colors": "^1.4.0",
    "commitizen": "^4.0.3",
    "coveralls": "^3.0.11",
    "cross-env": "^7.0.2",
    "cz-conventional-changelog": "^3.1.0",
    "function-arguments": "^1.0.8",
    "husky": "^4.2.3",
    "jest": "^22.0.1",
    "lint-staged": "^10.0.9",
    "lodash.camelcase": "^4.3.0",
    "prettier": "^2.0.2",
    "prompt": "^1.0.0",
    "replace-in-file": "^5.0.2",
    "rimraf": "^3.0.2",
    "rollup": "^0.57.0",
    "rollup-plugin-commonjs": "^9.0.0",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "ts-jest": "^22.0.0",
    "ts-node": "^7.0.0",
    "tslint": "^5.4.3",
    "tslint-config-prettier": "^1.18.0",
    "tslint-config-standard": "^7.0.0",
    "typedoc": "^0.17.3",
    "typescript": "^2.3.4",
    "validate-commit-msg": "^2.12.2"
  },
  "husky": {
    "hooks": {
      "commit-msg": "validate-commit-msg",
      "pre-commit": "lint-staged",
      "pre-push": "npm run test:prod && npm run build"
    }
  }
}
