{
    "name": "@hediet/semver",
    "version": "0.2.2",
    "description": "A typed implementation of the Semantic Version 2.0.0 specification.",
    "author": "Henning Dieterichs",
    "license": "MIT",
    "main": "./dist/src/index.js",
    "types": "./dist/src/index.d.ts",
    "files": [
        "dist",
        "src"
    ],
    "scripts": {
        "dev": "tsc --watch",
        "lint": "yarn run-script check-version && prettier --check ./src ./test && eslint ./src ./test --ext .js,.jsx,.ts,.tsx",
        "build": "tsc",
        "test": "mocha --require source-map-support/register \"./dist/test/**/*.test.js\"",
        "run-script": "node ./scripts/run-script"
    },
    "devDependencies": {
        "@types/assert": "^1.4.6",
        "@types/chai": "^4.2.11",
        "@types/mocha": "^7.0.2",
        "@types/semver": "^7.2.0",
        "@types/sinon": "^9.0.0",
        "@yarnpkg/pnpify": "^2.0.0-rc.21",
        "chai": "^4.2.0",
        "mocha": "^7.1.2",
        "prettier": "^2.0.5",
        "semver": "^7.3.2",
        "sinon": "^9.0.2",
        "source-map-support": "^0.5.19",
        "ts-node": "^8.9.1",
        "typescript": "^3.9.3"
    },
    "dependencies": {
        "@actions/exec": "^1.0.4",
        "@actions/github": "^2.2.0",
        "@typescript-eslint/eslint-plugin": "^3.0.1",
        "@typescript-eslint/parser": "^3.0.1",
        "eslint": "^7.1.0"
    },
    "publishConfig": {
        "access": "public",
        "registry": "https://registry.npmjs.org/"
    }
}