-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.04 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
{
"author": "Haraka Team <[email protected]>",
"name": "haraka-constants",
"license": "MIT",
"description": "Haraka constants",
"version": "1.0.7",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "[email protected]:haraka/haraka-constants.git"
},
"main": "index.js",
"files": [
"CHANGELOG.md"
],
"engines": {
"node": ">= 6"
},
"dependencies": {},
"optionalDependencies": {},
"devDependencies": {
"@haraka/eslint-config": "^1.1.5"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/haraka/haraka-constants/issues"
},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js test",
"lint:fix": "npx eslint@^8 *.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"
}
}