-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@semantic-release/error",
"description": "errors with more than just a message",
"version": "0.0.0-development",
"type": "module",
"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": "6.2.0",
"c8": "10.1.2",
"prettier": "3.3.3"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js"
],
"homepage": "https://github.com/semantic-release/error#readme",
"keywords": [
"error",
"semantic-release"
],
"license": "MIT",
"exports": "./index.js",
"c8": {
"include": [
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/error.git"
},
"scripts": {
"lint": "prettier --check \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
"lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
"pretest": "npm run lint",
"test": "c8 ava -v",
"test:ci": "c8 ava -v"
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
}
}