-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "nm-api",
"version": "1.0.2",
"description": "NetworkManager DBUS API",
"license": "Apache-2.0",
"author": "Resin.io Ltd (https://resin.io)",
"contributors": [
"Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)"
],
"keywords": [
"nm",
"nmcli",
"network",
"manager",
"networkmanager",
"dbus",
"api"
],
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc lib/index.ts --outDir dist/",
"test": "mocha",
"build-docs": "typedoc --theme markdown --readme README.md --module commonjs --out docs/ lib/ --mode file",
"build-test": "npm run build && npm run test",
"lint": "standard lib && standard --env mocha test",
"lint-fix": "standard --fix lib && standard --fix --env mocha test"
},
"dependencies": {
"bluebird": "3.5.1",
"dbus-native": "0.2.5",
"express": "4.16.3",
"lodash": "4.17.10",
"typed-error": "3.0.0",
"uuid": "3.3.2"
},
"devDependencies": {
"@types/bluebird": "3.5.21",
"@types/express": "4.16.0",
"@types/lodash": "4.14.110",
"@types/mocha": "5.2.4",
"@types/node": "10.5.1",
"@types/uuid": "3.4.3",
"mocha": "5.2.0",
"standard": "11.0.1",
"ts-loader": "4.4.2",
"typedoc": "^0.11.1",
"typedoc-plugin-markdown": "^1.1.13",
"typescript": "2.9.2"
},
"peerDependencies": {},
"optionalDependencies": {},
"homepage": "https://github.com/resin-io-modules/nm-api",
"repository": {
"type": "git",
"url": "https://github.com/resin-io-modules/nm-api.git"
},
"bugs": {
"url": "https://github.com/resin-io-modules/nm-api/issues"
}
}