-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.51 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
52
53
{
"name": "postfix-parser",
"description": "Postfix Log Parser",
"keywords": [
"postfix",
"log",
"parse",
"maillog",
"mail.log"
],
"version": "1.3.0",
"homepage": "https://github.com/msimerson/postfix-parser",
"author": {
"name": "Matt Simerson"
},
"repository": {
"type": "git",
"url": "git://github.com/msimerson/postfix-parser.git"
},
"main": "index.js",
"type": "module",
"files": [
"Changes.md",
"lib"
],
"engines": {
"node": ">=22"
},
"bugs": {
"url": "https://github.com/msimerson/postfix-parser/issues"
},
"license": "BSD-2-Clause",
"scripts": {
"clean": "rm -rf package-lock.json coverage node_modules",
"lint": "npm run lint:install && npx eslint index.js lib/*.js test/*.js",
"lint:install": "npm list | grep -q eslint || npm install @eslint/js eslint globals",
"lint:fix": "npx eslint --fix index.js lib/*.js test/*.js",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"format": "npm run prettier:fix && npm run lint:fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update"
},
"prettier": {
"printWidth": 90,
"singleQuote": true,
"semi": false
},
"dependencies": {}
}