-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.72 KB
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
{
"name": "haraka-plugin-template",
"version": "1.1.0",
"description": "Template for new Haraka plugins. Not a runtime plugin — copy and rename before publishing.",
"main": "index.js",
"files": [
"CHANGELOG.md",
"config"
],
"engines": {
"node": ">=22"
},
"scripts": {
"prepare": "git rev-parse --git-dir >/dev/null 2>&1 && git config core.hooksPath .githooks || true",
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint *.js test",
"lint:fix": "npx eslint *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"qlty": "qlty smells --all",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-exclude=package.json --test-coverage-exclude=test/*.js test/*.js",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info test/*.js",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-template.git"
},
"keywords": [
"haraka-plugin",
"not-a-plugin",
"scaffold",
"template"
],
"author": "Welcome Member <happy-haraka-hacker@example.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-template/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-template#readme",
"devDependencies": {
"@haraka/eslint-config": "^3.0.0",
"haraka-test-fixtures": "^1.7.0"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}