{
    "name": "dominators",
    "version": "1.1.2",
    "description": "Various dominator tree generators.",
    "main": "index.js",
    "scripts": {
        "lint": "eslint index.js lib/**/*.js src/**/*.js",
        "check": "npm run lint -s && dependency-check package.json --entry index.js",
        "test": "istanbul cover node_modules/mocha/bin/_mocha -- ./test/",
        "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | npx coveralls",
        "postcoveralls": "rimraf ./coverage",
        "prepublishOnly": "npm test",
        "patch": "npm version patch && npm publish",
        "minor": "npm version minor && npm publish",
        "major": "npm version major && npm publish",
        "postpublish": "git push origin master --follow-tags",
        "docs": "npx jsdoc-to-markdown src/*.js > tmp.md && cp RM.md README.md && cat tmp.md FOOTER.md >> README.md && rm tmp.md",
        "changelog": "npx auto-changelog -p -l 10 && git add CHANGELOG.md",
        "marktoc": "npx replace -s -q '### Changelog' '<!-- START doctoc -->\\\n<!-- END doctoc -->' CHANGELOG.md",
        "toc": "npx doctoc --github --title \"### Changelog\" CHANGELOG.md",
        "version": "run-s -s changelog marktoc toc"
    },
    "repository": "https://github.com/julianjensen/dominators.git",
    "keywords": [
        "dominator",
        "idom",
        "immediate dominator",
        "tree",
        "dominance",
        "frontier",
        "lengauer",
        "tarjan"
    ],
    "author": "Julian Jensen <jjdanois@gmail.com>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/julianjensen/dominators/issues"
    },
    "homepage": "https://github.com/julianjensen/dominators#readme",
    "devDependencies": {
        "chai": "^4.1.1",
        "dependency-check": "^2.10.0",
        "eslint": "^4.18.0",
        "get-stdin": "^5.0.1",
        "istanbul": "^0.4.5",
        "minimist": "latest",
        "mocha": "^3.5.0",
        "mocha-lcov-reporter": "^1.3.0",
        "npm-run-all": "^4.1.2",
        "rimraf": "^2.4.2"
    },
    "dependencies": {
        "traversals": "^1.0.15"
    }
}
