marmot-release
Advanced tools
Comparing version 1.2.8 to 1.2.9
{ | ||
"name": "marmot-release", | ||
"version": "1.2.8", | ||
"version": "1.2.9", | ||
"description": "marmot release tool", | ||
@@ -26,24 +26,43 @@ "main": "index.js", | ||
}, | ||
"scripts": { | ||
"test": "nyc --reporter=lcov --reporter=text mocha", | ||
"lint": "eslint . --fix" | ||
}, | ||
"engines": { | ||
"node": "8", | ||
"npm": "5" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:marmot-hq/marmot-release.git" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"conventional-changelog": "^3.0.5", | ||
"eslint": "^5.2.0", | ||
"eslint-config-antife": "^2.0.0", | ||
"husky": "^1.3.1", | ||
"intelli-espower-loader": "^1.0.1", | ||
"lint-staged": "^8.1.1", | ||
"mocha": "^5.2.0", | ||
"np": "^4.0.2", | ||
"nyc": "^12.0.2", | ||
"power-assert": "^1.6.0", | ||
"sinon": "^6.1.4" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "nyc --reporter=lcov --reporter=text mocha", | ||
"lint": "eslint . --fix", | ||
"ci": "npm run lint && npm run test", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add . && git commit -m 'doc: update changelog' || exit 0", | ||
"init-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", | ||
"preversion": "npm run changelog", | ||
"prepublishOnly": "np --yolo --no-publish" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:MarmotHQ/marmot-release.git" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"eslint --fix", | ||
"git add" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"license": "MIT" | ||
} |
@@ -5,3 +5,3 @@ # Release build files | ||
[![build status][travis-image]][travis-url] | ||
[![Test coverage][coveralls-image]][coveralls-url] | ||
[![Test coverage][codecov-image]][codecov-url] | ||
[![npm download][download-image]][download-url] | ||
@@ -11,6 +11,6 @@ | ||
[npm-url]: https://npmjs.org/package/marmot-release | ||
[travis-image]: https://img.shields.io/travis/marmot-hq/marmot-release.svg?style=flat-square | ||
[travis-url]: https://travis-ci.org/marmot-hq/marmot-release | ||
[coveralls-image]: https://img.shields.io/coveralls/marmot-hq/marmot-release.svg?style=flat-square | ||
[coveralls-url]: https://coveralls.io/r/marmot-hq/marmot-release?branch=master | ||
[travis-image]: https://img.shields.io/travis/MarmotHQ/marmot-release.svg?style=flat-square | ||
[travis-url]: https://travis-ci.org/MarmotHQ/marmot-release | ||
[codecov-image]: https://img.shields.io/codecov/c/github/MarmotHQ/marmot-release.svg?style=flat-square | ||
[codecov-url]: https://codecov.io/gh/MarmotHQ/marmot-release | ||
[download-image]: https://img.shields.io/npm/dm/marmot-release.svg?style=flat-square | ||
@@ -48,2 +48,2 @@ [download-url]: https://npmjs.org/package/marmot-release | ||
[MIT](LICENSE) | ||
[MIT](http://opensource.org/licenses/MIT) |
14230
11