-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
86 lines (86 loc) · 2.09 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dbus-next",
"version": "0.10.2",
"keywords": [
"dbus",
"dcop",
"d-bus",
"rpc",
"gnome",
"kde"
],
"description": "The next great DBus library for Node",
"files": [
"lib/*",
"index.js",
"package.json",
"types.d.ts"
],
"directories": {
"lib": "lib",
"test": "test",
"examples": "examples"
},
"main": "index.js",
"types": "types.d.ts",
"maintainers": [
{
"name": "Tony Crisci",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/dbusjs/node-dbus-next.git"
},
"dependencies": {
"event-stream": "3.3.4",
"jsbi": "^2.0.5",
"long": "^4.0.0",
"@nornagon/put": "0.0.8",
"safe-buffer": "^5.1.1",
"xml2js": "^0.4.17"
},
"optionalDependencies": {
"usocket": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-syntax-bigint": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.3.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"commander": "^2.19.0",
"handlebars": "^4.1.0",
"jest": "^24.1.0",
"jsdoc": "^3.6.3",
"semistandard": "^16.0.0"
},
"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",
"format": "cd lib && semistandard --global BigInt --fix && cd ../test && semistandard --env jest --parser babel-eslint --global BigInt --fix"
},
"jest": {
"testEnvironment": "node",
"bail": true
},
"standard": {
"parser": "babel-eslint",
"globals": [
"BigInt"
]
},
"engine": {
"node": ">=6.3.0"
}
}