the performance and readability of reduce is not a concern in this project since maintainers are familiar with the idiom and are iterating over small lists. the filter rule is disabled selectively since the filter being identified is not Array.filter closes #2403
142 lines
3.2 KiB
JSON
142 lines
3.2 KiB
JSON
{
|
|
"name": "semantic-release",
|
|
"description": "Automated semver compliant package publishing",
|
|
"version": "0.0.0-development",
|
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.test.js"
|
|
],
|
|
"timeout": "2m"
|
|
},
|
|
"bin": {
|
|
"semantic-release": "bin/semantic-release.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/semantic-release/issues"
|
|
},
|
|
"contributors": [
|
|
"Gregor Martynus (https://twitter.com/gr2m)",
|
|
"Pierre Vanduynslager (https://twitter.com/@pvdlg_)"
|
|
],
|
|
"dependencies": {
|
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
"@semantic-release/error": "^3.0.0",
|
|
"@semantic-release/github": "^8.0.0",
|
|
"@semantic-release/npm": "^9.0.0",
|
|
"@semantic-release/release-notes-generator": "^10.0.0",
|
|
"aggregate-error": "^3.0.0",
|
|
"cosmiconfig": "^7.0.0",
|
|
"debug": "^4.0.0",
|
|
"env-ci": "^5.0.0",
|
|
"execa": "^5.0.0",
|
|
"figures": "^3.0.0",
|
|
"find-versions": "^4.0.0",
|
|
"get-stream": "^6.0.0",
|
|
"git-log-parser": "^1.2.0",
|
|
"hook-std": "^2.0.0",
|
|
"hosted-git-info": "^4.0.0",
|
|
"lodash": "^4.17.21",
|
|
"marked": "^4.0.10",
|
|
"marked-terminal": "^5.0.0",
|
|
"micromatch": "^4.0.2",
|
|
"p-each-series": "^2.1.0",
|
|
"p-reduce": "^2.0.0",
|
|
"read-pkg-up": "^7.0.0",
|
|
"resolve-from": "^5.0.0",
|
|
"semver": "^7.3.2",
|
|
"semver-diff": "^3.1.1",
|
|
"signale": "^1.2.1",
|
|
"yargs": "^16.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "3.15.0",
|
|
"clear-module": "4.1.2",
|
|
"codecov": "3.8.3",
|
|
"delay": "5.0.0",
|
|
"dockerode": "3.3.1",
|
|
"file-url": "3.0.0",
|
|
"fs-extra": "9.1.0",
|
|
"got": "11.8.3",
|
|
"js-yaml": "4.1.0",
|
|
"mockserver-client": "5.11.2",
|
|
"nock": "13.2.1",
|
|
"nyc": "15.1.0",
|
|
"p-retry": "4.6.1",
|
|
"proxyquire": "2.1.3",
|
|
"sinon": "12.0.1",
|
|
"stream-buffers": "3.0.2",
|
|
"tempy": "1.0.1",
|
|
"xo": "0.32.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16 || ^14.17"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"docs",
|
|
"lib",
|
|
"index.js",
|
|
"cli.js"
|
|
],
|
|
"homepage": "https://github.com/semantic-release/semantic-release#readme",
|
|
"keywords": [
|
|
"author",
|
|
"automation",
|
|
"changelog",
|
|
"module",
|
|
"package",
|
|
"publish",
|
|
"release",
|
|
"semver",
|
|
"version"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"nyc": {
|
|
"include": [
|
|
"lib/**/*.js",
|
|
"index.js",
|
|
"cli.js"
|
|
],
|
|
"reporter": [
|
|
"json",
|
|
"text",
|
|
"html"
|
|
],
|
|
"all": true
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"trailingComma": "es5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/semantic-release/semantic-release.git"
|
|
},
|
|
"scripts": {
|
|
"codecov": "codecov -f coverage/coverage-final.json",
|
|
"lint": "xo",
|
|
"pretest": "npm run lint",
|
|
"semantic-release": "./bin/semantic-release.js",
|
|
"test": "nyc ava -v",
|
|
"test:ci": "nyc ava -v"
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"space": true,
|
|
"rules": {
|
|
"unicorn/no-reduce": "off",
|
|
"unicorn/string-content": "off"
|
|
}
|
|
},
|
|
"renovate": {
|
|
"extends": [
|
|
"github>semantic-release/.github"
|
|
]
|
|
}
|
|
}
|