-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
39 lines (39 loc) · 945 Bytes
/
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
{
"name": "dbus",
"version": "1.0.7",
"description": "A D-Bus binding for Node",
"author": "Shouqun Liu <liushouqun@gmail.com>",
"contributors": [
"Fred Chien <cfsghost@gmail.com>",
"Bryan Burgers <bryan@burgers.io>",
"Artem Derevnjuk <art_dere@hotmail.com>",
"Thiago Cardoso <thiago.figueredo@cesar.org.br>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Shouqun/node-dbus.git"
},
"engines": {
"node": ">= 0.12.0"
},
"main": "./lib/dbus",
"scripts": {
"node-gyp": "node_modules/.bin/node-gyp",
"install": "npm run build:release",
"test": "tap test/**/*.test.js",
"build:release": "node-gyp configure build",
"build:debug": "node-gyp configure build --debug"
},
"dependencies": {
"minimist": "^1.2.5",
"nan": "^2.14.0"
},
"os": [
"!win32"
],
"devDependencies": {
"node-gyp": "^4.0.0",
"tap": "^13.1.11"
}
}