forked from mdn/mdn-http-observatory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.07 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
67
68
{
"name": "@mdn/mdn-http-observatory",
"version": "1.3.4",
"author": "Mozilla Developer Network",
"description": "The MDN HTTP Observatory is a set of tools to analyze your website and inform you if you are utilizing the many available methods to secure it.",
"main": "src/index.js",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"start": "node src/api/index.js",
"dev": "nodemon src/api/index.js",
"test": "CONFIG_FILE=conf/config-test.json mocha",
"test:nodb": "CONFIG_FILE=conf/config-test.json SKIP_DB_TESTS=1 mocha",
"tsc": "tsc -p jsconfig.json",
"updateHsts": "node src/retrieve-hsts.js",
"refreshMaterializedViews": "node src/maintenance/index.js",
"migrate": "node -e 'import(\"./src/database/migrate.js\").then( m => m.migrateDatabase() )'"
},
"bin": {
"mdn-http-observatory-scan": "bin/scan.js"
},
"type": "module",
"license": "MPL-2.0",
"devDependencies": {
"@faker-js/faker": "^9.0.1",
"@supercharge/promise-pool": "^3.2.0",
"@types/mocha": "^10.0.7",
"@types/chai": "^4.3.19",
"@types/convict": "^6.1.6",
"@types/ip": "^1.1.3",
"@types/jsdom": "^21.1.7",
"@types/pg-format": "^1.0.5",
"@types/tough-cookie": "^4.0.5",
"chai": "^5.1.1",
"json-schema-to-jsdoc": "^1.1.1",
"mocha": "^10.7.3",
"nodemon": "^3.1.4",
"prettier-eslint": "^16.3.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/postgres": "^5.2.2",
"@fastify/static": "^7.0.4",
"@sentry/node": "^8.29.0",
"axios": "^1.7.7",
"axios-cookiejar-support": "^5.0.2",
"change-case": "^5.4.4",
"commander": "^12.1.0",
"convict": "^6.2.4",
"dayjs": "^1.11.13",
"fastify": "^4.28.1",
"fastify-simple-form": "^3.0.0",
"http-cookie-agent": "^6.0.1",
"ip": "^2.0.1",
"jsdom": "^25.0.0",
"pg": "^8.12.0",
"pg-format": "^1.0.4",
"pg-pool": "^3.6.2",
"postgrator": "^7.3.0",
"postgrator-cli": "^8.1.0",
"tldts": "^6.1.41",
"tough-cookie": "^4.1.4"
}
}