-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.9 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "dbus-native",
"author": "Andrey Sidorov <sidorares@yandex.com>",
"version": "0.15.2",
"keywords": [
"dbus",
"dcop",
"d-bus",
"rpc",
"gnome",
"kde"
],
"description": "D-bus protocol implementation in native javascript",
"files": [
"bin/dbus-native.js",
"lib/*",
"index.js",
"index.d.ts",
"package.json"
],
"directories": {
"lib": "lib",
"test": "test",
"examples": "examples"
},
"main": "index.js",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./compat": {
"types": "./lib/compat.d.ts",
"default": "./lib/compat.js"
},
"./package.json": "./package.json",
"./lib/*.js": "./lib/*.js",
"./lib/*": "./lib/*.js"
},
"maintainers": [
{
"name": "Andrey Sidorov",
"email": "sidoares@yandex.ru"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sidorares/dbus-native.git"
},
"bugs": {
"url": "https://github.com/sidorares/dbus-native/issues"
},
"homepage": "https://github.com/sidorares/dbus-native#readme",
"bin": {
"dbus-native": "./bin/dbus-native.js"
},
"dependencies": {
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.2",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.8.0",
"jscodeshift": "^17.4.0",
"long": "^5.3.2",
"prettier": "^3.9.6",
"typescript": "^7.0.2"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run lint && npm run format:check && npm run test:types && npm run test:raw",
"test:raw": "node --test --test-reporter=spec test/*.js test/*.mjs",
"test:integration": "node scripts/with-dbus.js -- npm run test:integration:raw",
"test:integration:raw": "node --test --test-reporter=spec test/integration/*.js",
"test:integration:broker": "node scripts/with-broker.js -- npm run test:integration:raw",
"test:integration:wrap": "DBUS_TEST_SHAPE=wrap npm run test:integration",
"test:integration:wrap:broker": "DBUS_TEST_SHAPE=wrap npm run test:integration:broker",
"test:integration:classic": "DBUS_TEST_SHAPE=classic npm run test:integration",
"test:integration:classic:broker": "DBUS_TEST_SHAPE=classic npm run test:integration:broker",
"test:bun": "bun test test/bun",
"test:bun:integration": "node scripts/with-dbus.js -- bun test test/bun",
"dbus:session": "node scripts/dbus-session.js",
"test:types": "tsc --noEmit"
},
"overrides": {
"brace-expansion": "^5.0.8",
"serialize-javascript": "^7.0.7"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"engines": {
"node": ">=22.12.0"
},
"types": "index.d.ts"
}