forked from Jelmerro/dbus-final
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.82 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
69
70
71
72
73
{
"name": "dbus-final",
"version": "0.0.0-dev",
"keywords": [
"dbus",
"dcop",
"d-bus",
"rpc",
"gnome",
"kde"
],
"description": "The (hopefully_ final DBus library you will install for Node.js",
"files": [
"lib/*",
"index.js",
"package.json",
"types.d.ts"
],
"directories": {
"lib": "lib",
"test": "test",
"examples": "examples"
},
"main": "index.js",
"types": "types.d.ts",
"license": "MIT",
"repository": "http://github.com/Jelmerro/node-dbus-final.git",
"dependencies": {
"@nornagon/put": "0.0.8",
"event-stream": "4.0.1",
"long": "5.2.1",
"safe-buffer": "5.2.1",
"xml2js": "0.5.0"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/eslint-parser": "7.21.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.21.0",
"@babel/plugin-syntax-bigint": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.20.7",
"babel-jest": "29.5.0",
"commander": "10.0.0",
"eslint": "8.38.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-sort-keys": "2.3.5",
"handlebars": "4.7.7",
"jest": "29.5.0",
"jsdoc": "4.0.2"
},
"scripts": {
"integration": "dbus-run-session -- jest ./test/integration",
"coverage": "dbus-run-session -- jest --coverage",
"unit": "jest ./test/*.test.js",
"test": "dbus-run-session -- jest",
"doc": "jsdoc --verbose -c jsdoc.conf --readme README.md -r lib index.js -d doc",
"fix": "eslint --parser @babel/eslint-parser lib/ test/ --fix",
"lint": "eslint --parser @babel/eslint-parser lib/ test/"
},
"jest": {
"testEnvironment": "node",
"bail": true
},
"standard": {
"parser": "@babel/eslint-parser",
"globals": [
"BigInt"
]
},
"engine": {
"node": ">=10.8.0"
}
}