{
    "name": "better-sudoku",
    "version": "1.0.1",
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "scripts": {
        "test": "jest --config jestconfig.json",
        "build": "tsc -p tsconfig.build.json",
        "format": "prettier --write \"src/**/*.ts\"",
        "lint": "tslint -p tsconfig.json",
        "prepare": "npm run build",
        "prepublishOnly": "npm test && npm run lint",
        "preversion": "npm run lint",
        "version": "npm run format && git add -A src",
        "postversion": "git push && git push --tags"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/SebastianWebdev/procedural_sudoku.git"
    },
    "keywords": [
        "Sudoku",
        "Generator",
        "Procedural",
        "typescript"
    ],
    "author": "Sebastian Gołębiowski",
    "license": "ISC",
    "description": "Procedural Sudoku Generators",
    "devDependencies": {
        "@types/jest": "^28.1.7",
        "jest": "^28.1.3",
        "prettier": "^2.7.1",
        "ts-jest": "^28.0.8",
        "tslint": "^6.1.3",
        "tslint-config-prettier": "^1.18.0",
        "typescript": "^4.7.4",
        "@types/node": "^18.7.4"
    },
    "files": [
        "lib/**/*"
    ],
    "dependencies": {}
}
