{
    "name": "brackets-manager",
    "version": "1.11.0",
    "description": "A simple library to manage tournament brackets (round-robin, single elimination, double elimination)",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "files": [
        "dist"
    ],
    "engines": {
        "node": ">=14"
    },
    "dependencies": {
        "brackets-model": "^1.7.0",
        "uuid": "^9.0.0"
    },
    "devDependencies": {
        "@types/chai": "^4.3.3",
        "@types/mocha": "^9.1.1",
        "@types/node": "18.11.9",
        "@types/uuid": "^9.0.2",
        "@typescript-eslint/eslint-plugin": "^5.42.0",
        "@typescript-eslint/parser": "^5.42.0",
        "brackets-json-db": "1.0.2",
        "brackets-memory-db": "^1.0.4",
        "chai": "^4.3.6",
        "chai-as-promised": "^7.1.1",
        "eslint": "^8.26.0",
        "eslint-plugin-jsdoc": "^39.6.2",
        "json-server": "^0.17.1",
        "mocha": "10.1.0",
        "mocha-each": "^2.0.1",
        "nyc": "^15.1.0",
        "typescript": "^4.8.4"
    },
    "scripts": {
        "lint": "eslint '**/*.{js,ts}' --fix",
        "test": "mocha 'test/**/*.spec.js'",
        "db": "json-server --watch db.json",
        "start": "tsc --watch",
        "build": "tsc",
        "prepare": "npm run build",
        "prepublishOnly": "npm run build",
        "coverage": "nyc -r text -r lcov npm test"
    },
    "keywords": [
        "javascript",
        "typescript",
        "tournament",
        "brackets",
        "manager",
        "database"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Drarig29/brackets-manager.js.git"
    },
    "author": "Corentin Girard",
    "license": "ISC",
    "bugs": {
        "url": "https://github.com/Drarig29/brackets-manager.js/issues"
    },
    "homepage": "https://github.com/Drarig29/brackets-manager.js#readme",
    "volta": {
        "node": "14.21.3",
        "npm": "7.24.2"
    }
}
