134 lines
2.9 KiB
JSON
134 lines
2.9 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)",
|
|
"bin": {
|
|
"semantic-release": "bin/semantic-release.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/semantic-release/issues"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@semantic-release/commit-analyzer": "^5.0.0",
|
|
"@semantic-release/condition-travis": "^7.0.0",
|
|
"@semantic-release/error": "^2.1.0",
|
|
"@semantic-release/github": "^2.0.0",
|
|
"@semantic-release/npm": "^2.0.0",
|
|
"@semantic-release/release-notes-generator": "^6.0.0",
|
|
"chalk": "^2.3.0",
|
|
"commander": "^2.11.0",
|
|
"cosmiconfig": "^3.1.0",
|
|
"debug": "^3.1.0",
|
|
"execa": "^0.8.0",
|
|
"get-stream": "^3.0.0",
|
|
"git-log-parser": "^1.2.0",
|
|
"import-from": "^2.1.0",
|
|
"lodash": "^4.0.0",
|
|
"marked": "^0.3.6",
|
|
"marked-terminal": "^2.0.0",
|
|
"p-reduce": "^1.0.0",
|
|
"read-pkg-up": "^3.0.0",
|
|
"semver": "^5.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.24.0",
|
|
"codecov": "^3.0.0",
|
|
"commitizen": "^2.9.6",
|
|
"cz-conventional-changelog": "^2.0.0",
|
|
"dockerode": "^2.5.2",
|
|
"eslint-config-prettier": "^2.5.0",
|
|
"eslint-plugin-prettier": "^2.3.0",
|
|
"file-url": "^2.0.2",
|
|
"fs-extra": "^4.0.2",
|
|
"got": "^8.0.0",
|
|
"js-yaml": "^3.10.0",
|
|
"mockserver-client": "^2.0.0",
|
|
"nock": "^9.0.2",
|
|
"nyc": "^11.2.1",
|
|
"p-retry": "^1.0.0",
|
|
"prettier": "~1.8.0",
|
|
"proxyquire": "^1.8.0",
|
|
"sinon": "^4.0.0",
|
|
"tempy": "^0.2.1",
|
|
"xo": "^0.18.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=4",
|
|
"npm": ">=2"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"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,
|
|
"singleQuote": true,
|
|
"bracketSpacing": false,
|
|
"trailingComma": "es5"
|
|
},
|
|
"publishConfig": {
|
|
"tag": "next"
|
|
},
|
|
"release": {
|
|
"branch": "caribou"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/semantic-release/semantic-release.git"
|
|
},
|
|
"scripts": {
|
|
"cm": "git-cz",
|
|
"codecov": "codecov -f coverage/coverage-final.json",
|
|
"lint": "xo",
|
|
"pretest": "npm run lint",
|
|
"semantic-release": "./bin/semantic-release.js",
|
|
"test": "nyc ava -v"
|
|
},
|
|
"xo": {
|
|
"extends": [
|
|
"prettier"
|
|
],
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": 2
|
|
}
|
|
}
|
|
}
|