-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "dbus-network-manager",
"version": "0.1.3",
"description": "Interface to NetworkManager DBUS interface",
"//": [
"See: http://2ality.com/2017/06/pkg-esnext.html",
"and: http://2ality.com/2017/07/npm-packages-via-babel.html"
],
"main": "cjs/network-manager.js",
"esnext": "esm/network-manager.js",
"scripts": {
"prepack": "npm install --only=dev && babel esm --out-dir cjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LGSInnovations/node-dbus-network-manager.git"
},
"author": "James Cook <jcook@lgsinnovations.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LGSInnovations/node-dbus-network-manager/issues"
},
"homepage": "https://github.com/LGSInnovations/node-dbus-network-manager#readme",
"dependencies": {
"dbus-as-promised": "^0.1.1",
"p-lazy": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "4"
}
}
]
]
}
}