-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.18 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
{
"author": "Haraka Team <haraka.mail@gmail.com>",
"name": "haraka-test-fixtures",
"license": "MIT",
"description": "Haraka Test Fixtures",
"version": "1.3.8",
"repository": {
"type": "git",
"url": "git@github.com:haraka/test-fixtures.git"
},
"main": "index.js",
"files": [
"CHANGELOG.md",
"lib",
"config"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"address-rfc2821": "^2.1.2",
"haraka-config": "^1.4.0",
"haraka-constants": "^1.0.7",
"haraka-email-message": "^1.2.4",
"haraka-notes": "^1.1.0",
"haraka-results": "^2.2.4",
"haraka-utils": "^1.1.3"
},
"devDependencies": {
"@haraka/eslint-config": "^1.1.5"
},
"bugs": {
"url": "https://github.com/haraka/test-fixtures/issues"
},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js lib test",
"lint:fix": "npx eslint@^8 *.js lib 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"
}
}