-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dnssec-name-shame",
"private": true,
"version": "0.0.0",
"description": "Look at a domain and check for DNSSEC records. Naming and shaming included!",
"homepage": "https://dnssec-name-and-shame.com/",
"dependencies": {
"bluebird": "^3.7.2",
"bunyan": "^1.8.15",
"bunyan-middleware": "^1.0.1",
"configvention": "^2.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"express": "^4.17.1",
"extend": "^3.0.2",
"getdns": "^4.1.0",
"helmet": "^4.6.0",
"mongodb": "^3.6.9",
"serve-favicon": "^2.5.0",
"st": "^3.0.0"
},
"devDependencies": {
"bower": "^1.8.12",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.7",
"pre-commit": "^1.2.2"
},
"engines": {
"node": "^12.0.0 || ^14.0.0",
"npm": "^6.0.0"
},
"scripts": {
"start": "node app/web.js",
"debug": "nodemon --inspect app/web.js | bunyan",
"test": "npm run --silent lint && echo && echo 'No tests have been added!'",
"lint": "npm run --silent eslint",
"lint:fix": "npm run --silent eslint:fix",
"eslint": "eslint app/ lib/",
"eslint:fix": "npm run --silent eslint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/joelpurra/node-dnssec-name-shame"
},
"bugs": {
"url": "https://github.com/joelpurra/node-dnssec-name-shame/issues",
"email": "[email protected]"
},
"keywords": [
"dnssec"
],
"author": {
"name": "Joel Purra",
"email": "[email protected]",
"url": "https://joelpurra.com/"
},
"contributors": [
{
"name": "Tom Cuddy"
}
],
"license": "AGPL-3.0"
}