-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
43 lines (43 loc) · 1.16 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
{
"author": "Haraka Team <haraka.mail@gmail.com>",
"name": "haraka-config",
"license": "MIT",
"description": "Haraka's config file loader",
"version": "1.4.0",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "git@github.com:haraka/haraka-config.git"
},
"main": "config.js",
"files": [
"lib",
"CHANGELOG.md"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"optionalDependencies": {
"hjson": "^3.2.2"
},
"devDependencies": {
"@haraka/eslint-config": "^1.1.3"
},
"bugs": {
"mail": "haraka.mail@gmail.com",
"url": "https://github.com/haraka/haraka-config/issues"
},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js lib test test/*/*.js",
"lint:fix": "npx eslint@^8 *.js lib test test/*/*.js --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10 test test/readers",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update && npm run prettier:fix"
}
}