forked from oxygen/dhcp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.56 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
{
"name": "@network-utils/dhcp",
"version": "1.0.10",
"description": "NodeJS implementation of DHCP socket connection",
"main": "out/index.js",
"types": "out/index.d.ts",
"directories": {
"example": "examples"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"coveralls": "^3.0.6",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"scripts": {
"prepare": "npm run build",
"build_test": "tsc --project tsconfig.test.json",
"test": "npm run build_test && mocha --require ts-node/register ./out_test/test/*.js",
"build": "tsc",
"prepatch": "npm run build",
"patch": "npm version patch",
"pub": "npm run patch && npm publish && git push",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfucci/dhcp.git"
},
"keywords": [
"dhcp",
"net",
"mac",
"server",
"client",
"socket"
],
"author": "",
"contributors": [
"Miroshin Stepan<[email protected]>",
"Protasova Elena<[email protected]>",
"Marco Fucci di Napoli<[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mfucci/dhcp/issues"
},
"homepage": "https://github.com/mfucci/dhcp#readme",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html"
]
}
}