-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.24 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
{
"name": "dgram-server",
"version": "0.1.0",
"description": "Stream-based UDP server.",
"main": "index.js",
"scripts": {
"lint": "xo",
"cover": "jest --coverage",
"test": "npm run lint && jest",
"test-ci": "npm run lint && npm run cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reklatsmasters/dgram-server.git"
},
"keywords": [
"udp",
"server",
"dgram",
"serve",
"listen"
],
"author": "Dmitriy Tsvettsikh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reklatsmasters/dgram-server/issues"
},
"homepage": "https://github.com/reklatsmasters/dgram-server#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"unicast": "^1.1.0"
},
"devDependencies": {
"jest": "^22.2.2",
"xo": "^0.18.2"
},
"jest": {
"modulePaths": [
"<rootDir>"
],
"testRegex": "test/(.*)\\.js$",
"coverageDirectory": "<rootDir>/coverage",
"coveragePathIgnorePatterns": [
"/test/",
"/examples/"
]
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"object-curly-spacing": [
"error",
"always"
]
},
"ignores": [
"**/test/**"
]
}
}