-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
54 lines (54 loc) · 1.05 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
{
"name": "dhcp",
"title": "dhcp",
"version": "0.2.20",
"homepage": "https://github.com/infusion/node-dhcp",
"bugs": {
"url": "https://github.com/infusion/node-dhcp/issues"
},
"description": "A DHCP server written in JavaScript",
"keywords": [
"dhcp",
"network",
"server",
"daemon",
"ip",
"ethernet",
"net",
"bootp",
"dhclient",
"udp"
],
"author": "Robert Eisele <robert@xarg.org> (http://www.xarg.org/)",
"main": "lib/dhcp.js",
"private": false,
"readmeFilename": "README.md",
"directories": {
"example": "./examples",
"bin": "./bin",
"lib": "./lib",
"test": "./tests"
},
"license": "MIT OR GPL-2.0",
"repository": {
"type": "git",
"url": "git://github.com/infusion/node-dhcp.git"
},
"bin": {
"dhcp": "./bin/dhcp-cli.js",
"dhcpd": "./bin/dhcpd-cli.js"
},
"engines": {
"node": ">=5.10.0"
},
"scripts": {
"test": "mocha tests/*.js"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"dependencies": {
"minimist": "*"
}
}