forked from node-pop3/node-pop3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
{
"name": "node-pop3",
"version": "0.8.0",
"description": "POP3 client for node",
"main": "./lib/Command.js",
"type": "commonjs",
"exports": {
"import": "./src/Command.mjs",
"require": "./lib/Command.js"
},
"bin": {
"pop": "./bin/pop.js"
},
"scripts": {
"cli": "node ./bin/pop.js",
"lint": "npm run eslint",
"eslint": "eslint --ext=mjs,js .",
"babel-src": "babel src -d lib --source-maps --out-file-extension .js",
"babel-bin": "rm bin/pop.js && babel bin/index.mjs -o bin/pop.js --source-maps --out-file-extension .js && chmod 0755 bin/pop.js",
"babel": "npm run babel-src && npm run babel-bin",
"mocha": "mocha --require chai/register-expect.js --exit",
"test": "rm -Rf .nyc_output && rm -Rf ./node_modules/.cache && npm run babel && nyc npm run mocha"
},
"nyc": {
"reporter": [
"text",
"lcov"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lianxh/node-pop3.git"
},
"keywords": [
"pop3",
"node",
"Promise",
"Stream"
],
"author": "lianxh",
"contributors": [
"Brett Zamir"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lianxh/node-pop3/issues"
},
"homepage": "https://github.com/lianxh/node-pop3#readme",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@comandeer/babel-plugin-banner": "^5.0.0",
"@expo/spawn-async": "^1.7.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-extension": "^0.1.3",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"chai": "^4.3.7",
"eslint": "^8.27.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0"
}
}