76 lines
1.4 KiB
JSON
76 lines
1.4 KiB
JSON
{
|
|
"name": "@semantic-release/error",
|
|
"description": "errors with more than just a message",
|
|
"version": "3.0.0",
|
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.test.js"
|
|
]
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/error/issues"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "3.15.0",
|
|
"codecov": "3.8.3",
|
|
"nyc": "15.1.0",
|
|
"xo": "0.38.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.17"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"homepage": "https://github.com/semantic-release/error#readme",
|
|
"keywords": [
|
|
"error",
|
|
"semantic-release"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"nyc": {
|
|
"include": [
|
|
"index.js"
|
|
],
|
|
"reporter": [
|
|
"json",
|
|
"text",
|
|
"html"
|
|
],
|
|
"all": true
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"trailingComma": "es5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/semantic-release/error.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"
|
|
}
|
|
},
|
|
"renovate": {
|
|
"extends": [
|
|
"github>semantic-release/.github"
|
|
]
|
|
}
|
|
}
|