-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 874 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
{
"name": "yapople",
"version": "0.4.10",
"author": "Andrew D.Laptev <[email protected]>",
"description": "Yet another POP3 library",
"main": "lib/yapople.js",
"typings": "lib/yapople.d.ts",
"scripts": {
"test": "eslint . && jest",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/agsh/yapople.git"
},
"dependencies": {
"mailparser": "^0.6.2"
},
"keywords": [
"email",
"e-mail",
"mail",
"pop3",
"pop"
],
"license": "MIT",
"engines": {
"node": ">=5.10"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0"
}
}