opensphere-build-index
Version:
Generates index HTML files for Google Closure projects.
101 lines (100 loc) • 2.71 kB
JSON
{
"name": "opensphere-build-index",
"version": "4.0.0",
"description": "Generates index HTML files for Google Closure projects.",
"bin": {
"os-index": "./bin/buildindex"
},
"main": "buildindex.js",
"scripts": {
"test": "nyc mocha test/**/*.test.js",
"lint": "eslint {,**/}*.js",
"package:update": "if git diff --name-only ORIG_HEAD HEAD | grep --quiet package.json; then echo 'UPDATE: package.json changed, consider running yarn in your workspace root'; fi",
"semantic-release": "semantic-release"
},
"keywords": [
"opensphere",
"build",
"index"
],
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/opensphere-build-index.git"
},
"author": "Kevin Schmidt <kschmidt@caci.com>",
"maintainers": [
"Kevin Schmidt <kschmidt@caci.com>",
"William Wall <wwall@caci.com>"
],
"license": "Apache-2.0",
"nyc": {
"lines": 1,
"statements": 1,
"branches": 1,
"functions": 1,
"include": [
"*.js"
],
"exclude": [
".eslintrc.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true,
"check-coverage": true,
"report-dir": "test/coverage"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"dependencies": {
"bluebird": "^3.4.6",
"yargs": "^6.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^6.0.0",
"eslint-config-google": "^0.14.0",
"husky": "^3.0.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"semantic-release": "^15.13.3",
"slash": "^3.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-merge": "npm run package:update",
"post-rewrite": "npm run package:update",
"pre-commit": "if git diff --name-only HEAD | grep -q '\\.js$'; then npm run lint; fi"
}
}
}