{
    "name": "simplytyped",
    "version": "3.3.0",
    "description": "yet another Typescript type library for advanced types",
    "main": "index",
    "types": "index.d.ts",
    "scripts": {
        "doc": "ts-node scripts/generateDocumentation.ts > README.md",
        "commitDocs": "sh scripts/commitDocsIfChanged.sh",
        "lint": "tslint --config tslint.json --project . --format stylish",
        "test": "npm run -s tsc && NODE_PATH=src/ ava",
        "test:all": "sh scripts/testTsVersions.sh",
        "tsc": "tsc",
        "prepub": "rm -rf dist && npm -s run tsc && ts-node scripts/preparePublish.ts",
        "release": "npm run -s prepub && cd dist/src && npx semantic-release"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/andnp/SimplyTyped.git"
    },
    "keywords": [
        "typescript",
        "types"
    ],
    "author": "Andy Patterson",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/andnp/SimplyTyped/issues"
    },
    "homepage": "https://github.com/andnp/SimplyTyped#readme",
    "peerDependencies": {
        "typescript": ">=2.8.0"
    },
    "devDependencies": {
        "@commitlint/config-conventional": "^8.0.0",
        "@types/node": "~13.9.0",
        "@ava/babel": "^1.0.1",
        "ava": "~3.7.1",
        "commitlint": "^8.0.0",
        "husky": "^4.0.2",
        "ts-node": "^8.0.3",
        "tslint": "^5.13.0"
    },
    "ava": {
        "files": [
            "dist/test/**/*.test.js"
        ],
        "concurrency": 32,
        "babel": {}
    },
    "commitlint": {
        "extends": [
            "@commitlint/config-conventional"
        ]
    },
    "husky": {
        "hooks": {
            "commit-msg": "commitlint -e $GIT_PARAMS",
            "pre-push": "npm run -s lint && npm run -s test && npm run -s commitDocs"
        }
    }
}
