-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "haraka-email-message",
"version": "1.2.5",
"description": "Haraka email message",
"main": "index.js",
"files": [
"CHANGELOG.md",
"config"
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^9 *.js test",
"lint:fix": "npx eslint@^9 *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update && npm run prettier:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/email-message.git"
},
"keywords": [
"haraka",
"email-message"
],
"author": "Haraka Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/email-message/issues"
},
"homepage": "https://github.com/haraka/email-message#readme",
"devDependencies": {
"@haraka/eslint-config": "^2.0.2"
},
"dependencies": {
"haraka-config": "^1.4.2",
"haraka-message-stream": "^1.2.2",
"iconv": "^3.0.1",
"libmime": "^5.3.6",
"libqp": "^2.1.1"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}