-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
46
47
{
"name": "esp-abuse.json",
"version": "1.0.0",
"type": "module",
"description": "Abuse email, forms and policies for major ESP (email service providers).",
"main": "esp-abuse.json",
"scripts": {
"commitmsg": "npx commitlint --edit --verbose",
"lint": "npx eslint . --ext '.js,.json' --cache",
"lint-fix": "npx eslint . --ext '.js,.json' --cache --fix",
"test": "npm run lint && node ./test/dataset.js",
"build": "node ./scripts/build.js",
"serve": "npx lite-server --baseDir='build'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpha14/esp-abuse.json.git"
},
"keywords": [
"abuse",
"abuse-reporting",
"esp",
"json-dataset",
"json"
],
"author": "alpha14",
"license": "CC-BY-3.0",
"bugs": {
"url": "https://github.com/alpha14/esp-abuse.json/issues"
},
"homepage": "https://alpha14.github.io/esp-abuse.json",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"lite-server": "^2.6.1"
},
"dependencies": {
"@commitlint/config-conventional": "^19.1.0",
"commitlint": "^19.2.1",
"cpy": "^11.0.1",
"schema-inspector": "^2.1.0"
}
}