115 lines
2.4 KiB
JSON
115 lines
2.4 KiB
JSON
{
|
|
"name": "@semantic-release/npm",
|
|
"description": "semantic-release plugin to publish a npm package",
|
|
"version": "9.0.1",
|
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.test.js"
|
|
],
|
|
"timeout": "2m",
|
|
"workerThreads": false
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/npm/issues"
|
|
},
|
|
"contributors": [
|
|
"Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
"Gregor Martynus (https://twitter.com/gr2m)"
|
|
],
|
|
"dependencies": {
|
|
"@semantic-release/error": "^3.0.0",
|
|
"aggregate-error": "^3.0.0",
|
|
"execa": "^5.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"lodash": "^4.17.15",
|
|
"nerf-dart": "^1.0.0",
|
|
"normalize-url": "^6.0.0",
|
|
"npm": "^8.3.0",
|
|
"rc": "^1.2.8",
|
|
"read-pkg": "^5.0.0",
|
|
"registry-auth-token": "^4.0.0",
|
|
"semver": "^7.1.2",
|
|
"tempy": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "4.0.1",
|
|
"clear-module": "4.1.2",
|
|
"codecov": "3.8.3",
|
|
"delay": "5.0.0",
|
|
"dockerode": "3.3.1",
|
|
"get-stream": "6.0.1",
|
|
"got": "11.8.3",
|
|
"nyc": "15.1.0",
|
|
"p-retry": "4.6.1",
|
|
"semantic-release": "19.0.2",
|
|
"sinon": "12.0.1",
|
|
"stream-buffers": "3.0.2",
|
|
"xo": "0.36.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16 || ^14.17"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"index.js"
|
|
],
|
|
"homepage": "https://github.com/semantic-release/npm#readme",
|
|
"keywords": [
|
|
"npm",
|
|
"publish",
|
|
"registry",
|
|
"semantic-release",
|
|
"version"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"nyc": {
|
|
"include": [
|
|
"lib/**/*.js",
|
|
"index.js"
|
|
],
|
|
"reporter": [
|
|
"json",
|
|
"text",
|
|
"html"
|
|
],
|
|
"all": true
|
|
},
|
|
"peerDependencies": {
|
|
"semantic-release": ">=19.0.0"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"trailingComma": "es5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/semantic-release/npm.git"
|
|
},
|
|
"scripts": {
|
|
"codecov": "codecov -f coverage/coverage-final.json",
|
|
"lint": "xo",
|
|
"pretest": "npm run lint",
|
|
"semantic-release": "semantic-release",
|
|
"test": "nyc ava -v",
|
|
"test:ci": "nyc ava -v"
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"space": true,
|
|
"rules": {
|
|
"unicorn/string-content": "off",
|
|
"unicorn/no-reduce": "off"
|
|
}
|
|
},
|
|
"renovate": {
|
|
"extends": [
|
|
"github>semantic-release/.github"
|
|
]
|
|
}
|
|
}
|