-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "node-dbus-notifier",
"version": "0.3.6",
"description": "DBus-based desktop notifications with full feature support",
"keywords": [
"dbus",
"notifier",
"desktop",
"notification"
],
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts",
"utils"
],
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://github.com/Hill-98/node-dbus-notifier",
"repository": "github:Hill-98/node-dbus-notifier",
"bugs": {
"url": "https://github.com/Hill-98/node-dbus-notifier/issues"
},
"author": "Zhong Lufan",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "echo TODO..."
},
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"dbus-next": "^0.10.2"
},
"devDependencies": {
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.8.3"
},
"volta": {
"node": "12.22.12"
}
}