{
    "name": "faker-es6",
    "version": "7.0.0",
    "description": "A heavily inspired lib to generate massive amounts of realistic fake data. This lib was inspired by what I would like to see in Marak/faker.js plus I though it could be a good exercise",
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "repository": "git@github.com:samir-araujo/faker-es6.git",
    "author": "Samir J M Araujo <samir.blanc@gmail.com>",
    "license": "MIT",
    "private": false,
    "devDependencies": {
        "@babel/core": "^7.9.0",
        "@babel/preset-env": "^7.9.0",
        "@babel/preset-typescript": "^7.9.0",
        "@types/jest": "^25.1.4",
        "@types/lodash": "^4.14.149",
        "@types/node": "^13.9.5",
        "@typescript-eslint/eslint-plugin": "^2.27.0",
        "@typescript-eslint/parser": "^2.27.0",
        "agadoo": "^2.0.0",
        "babel-jest": "^25.2.4",
        "commitizen": "^4.0.3",
        "coveralls": "^3.0.11",
        "cross-env": "^7.0.2",
        "cz-conventional-changelog": "3.1.0",
        "eslint": "^6.8.0",
        "husky": "^4.2.3",
        "jest": "^25.2.4",
        "lint-staged": ">=10",
        "lodash": "^4.17.15",
        "np": "^6.2.0",
        "randexp": "^0.5.3",
        "semantic-release": "^17.0.4",
        "ts-jest": "^25.3.0",
        "ts-loader": "^6.2.2",
        "typescript": "^3.8.3"
    },
    "config": {
        "commitizen": {
            "path": "./node_modules/cz-conventional-changelog"
        }
    },
    "scripts": {
        "commit": "git-cz",
        "build": "tsc",
        "lint": "eslint '**/*.ts' --fix --ignore-pattern node_modules/ --ignore-pattern lib/",
        "test": "jest",
        "test:watch": "jest --watch",
        "test:coverage": "jest --coverage",
        "prepublishOnly": "agadoo index.ts"
    },
    "resolutions": {
        "minimist": "^1.2.5"
    },
    "bugs": {
        "url": "https://github.com/samir-araujo/faker-es6/issues",
        "email": "samir.blanc@gmail.com"
    },
    "keywords": [
        "faker",
        "faker-es6",
        "mock",
        "mocking",
        "fake-content",
        "fake",
        "generator",
        "data",
        "data-generator",
        "javascript",
        "es6",
        "typescript",
        "jest",
        "testing",
        "test"
    ],
    "husky": {
        "hooks": {
            "prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
            "pre-push": "yarn test",
            "pre-commit": "lint-staged"
        }
    },
    "lint-staged": {
        "*.js": "eslint --cache --fix"
    }
}
