-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "special-mail-lib",
"version": "4.7.6",
"description": "Special mail lib",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint ./",
"int-tests": "NODE_PRESERVE_SYMLINKS=1 mocha \"tests/int/**/test-*.js\"",
"unit-tests": "NODE_PRESERVE_SYMLINKS=1 mocha \"tests/unit/**/test-*.js\"",
"all-tests": "npm run lint && npm run unit-tests && npm run int-tests && echo 'SUCCESS!!'",
"test": "./tests/int/run.sh",
"release": "npm test && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/slava-t/special-mail-lib.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"eslint": "^8.24.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jest": "^27.1.0",
"eslint-plugin-react": "^7.31.8",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"address-rfc2821": "^2.1.1",
"addressparser": "^1.0.1",
"axios": "^1.6.2",
"haraka-dsn": "^1.0.4",
"iconv": "^3.0.1",
"js-base64": "^3.7.5",
"mailparser": "^3.6.5",
"mailsplit": "^5.4.0",
"merge": "^2.1.1",
"nodemailer": "^6.9.7",
"pg-boss": "^9.0.3",
"sequelize": "^6.35.2",
"sleep-promise": "^9.1.0",
"spf-check": "^0.4.3",
"stream-buffers": "^3.0.2",
"string-template": "^1.0.0",
"winston": "^3.11.0",
"yaml": "^2.3.4"
}
}