forked from sidorares/dbus-native
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.11 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.11 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@homebridge/dbus-native",
"author": "Andrey Sidorov <sidorares@yandex.com>",
"version": "0.7.3",
"keywords": [
"dbus",
"dcop",
"d-bus",
"rpc",
"gnome",
"kde"
],
"description": "D-bus protocol implementation in native javascript",
"files": [
"bin/dbus2js.js",
"lib/*",
"index.js",
"package.json",
"package-lock.json",
"index.d.ts"
],
"directories": {
"lib": "lib",
"test": "test",
"examples": "examples"
},
"main": "index.js",
"maintainers": [
{
"name": "Andrey Sidorov",
"email": "sidoares@yandex.ru"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge/dbus-native.git"
},
"bin": {
"dbus2js": "bin/dbus2js.js"
},
"dependencies": {
"event-stream": "^4.0.1",
"hexy": "^0.3.5",
"long": "^5.3.2",
"minimist": "^1.2.8",
"safe-buffer": "^5.1.2",
"xml2js": "^0.6.2"
},
"comment": {
"optionalDependencies": {
"abstract-socket": "^2.0.0"
}
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"nyc": "^17.1.0",
"prettier": "^3.8.1"
},
"scripts": {
"lint": "npm run lint:docs && npm run lint:code",
"lint:code": "eslint index.js 'bin/*.js' 'lib/**/*.js' 'test/**/*.js'",
"lint:docs": "eslint 'examples/**/*.js'",
"test": "npm run lint && npm run test:raw",
"test:raw": "mocha",
"prettier": "prettier --write index.js '{bin,lib,examples,test}/**/*.js'",
"prettier:docs": "prettier-markdown README.md",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"precommit": "lint-staged",
"prepublish": "npm prune"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none"
},
"engine": {
"node": ">=8.0"
}
}