-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "cli-error-notifier",
"version": "3.0.2",
"description": "Sends native desktop notifications if CLI apps fail",
"license": "MIT",
"repository": "micromata/cli-error-notifier",
"author": {
"name": "Michael Kühnel",
"email": "m.kuehnel@micromata.de",
"url": "https://micromata.de"
},
"bin": {
"onerror": "cli.js"
},
"engines": {
"node": "^14.16 || >=16.0.0"
},
"type": "module",
"scripts": {
"test": "npm run lint && c8 ava",
"lint": "eslint --cache --ignore-path .gitignore .",
"lint:fix": "npm run lint --silent -- --fix",
"release": "standard-version --tag-prefix",
"release:patch": "npm run release --silent -- --release-as patch",
"release:minor": "npm run release --silent -- --release-as minor",
"release:major": "npm run release --silent -- --release-as major"
},
"files": [
"lib",
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"error",
"error-handling",
"notifications",
"notify"
],
"dependencies": {
"execa": "^6.1.0",
"log-symbols": "^5.1.0",
"meow": "^10.1.3",
"node-notifier": "^10.0.1",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"ava": "^4.3.3",
"c8": "^7.12.0",
"codecov": "^3.8.2",
"eslint": "^8.37.0",
"eslint-config-xo": "^0.42.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-unicorn": "^46.0.0",
"is-semver": "^1.0.11",
"standard-version": "^9.5.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}