forked from nodeca/nntp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 974 Bytes
/
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
{
"name": "nntp-server",
"version": "1.0.3",
"description": "NNTP server implementation.",
"keywords": [
"nntp",
"nntp server"
],
"license": "MIT",
"repository": "nodeca/nntp-server",
"files": [
"index.js",
"lib/"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha",
"coverage": "npm run test && nyc report --reporter html",
"report-coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"debug": "^4.0.0",
"denque": "^1.1.1",
"destroy": "^1.0.4",
"electron-logger": "0.0.3",
"end-of-stream": "^1.4.0",
"from2": "^2.3.0",
"glob": "^7.1.2",
"lodash": "^4.17.11",
"pump": "^3.0.0",
"serialize-error": "^3.0.0",
"split2": "^3.0.0",
"through2": "^3.0.0"
},
"resolutions": {
"terser": "3.14.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^5.5.0",
"mocha": "^5.0.1",
"nyc": "^13.0.1"
}
}