-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
69 lines (69 loc) · 2.34 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
69
{
"name": "@mdn/mdn-http-observatory",
"version": "1.3.8",
"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_EXTRA_CA_CERTS=node_modules/node_extra_ca_certs_mozilla_bundle/ca_bundle/ca_intermediate_root_bundle.pem node src/api/index.js",
"dev": "NODE_EXTRA_CA_CERTS=node_modules/node_extra_ca_certs_mozilla_bundle/ca_bundle/ca_intermediate_root_bundle.pem 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/wrapper.js"
},
"type": "module",
"license": "MPL-2.0",
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@supercharge/promise-pool": "^3.2.0",
"@types/chai": "^5.0.1",
"@types/convict": "^6.1.6",
"@types/ip": "^1.1.3",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"@types/pg-format": "^1.0.5",
"@types/tough-cookie": "^4.0.5",
"chai": "^5.1.2",
"json-schema-to-jsdoc": "^1.1.1",
"mocha": "^11.0.1",
"nodemon": "^3.1.7",
"prettier-eslint": "^16.3.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^13.0.0",
"@fastify/postgres": "^6.0.1",
"@fastify/static": "^8.0.3",
"@sentry/node": "^8.41.0",
"axios": "^1.7.8",
"axios-cookiejar-support": "^5.0.3",
"change-case": "^5.4.4",
"commander": "^12.1.0",
"convict": "^6.2.4",
"dayjs": "^1.11.13",
"fastify": "^5.1.0",
"fastify-simple-form": "^3.0.0",
"http-cookie-agent": "^6.0.6",
"ip": "^2.0.1",
"jsdom": "^25.0.1",
"node_extra_ca_certs_mozilla_bundle": "^1.0.6",
"pg": "^8.13.1",
"pg-format": "^1.0.4",
"pg-pool": "^3.7.0",
"postgrator": "^8.0.0",
"postgrator-cli": "^9.0.0",
"tldts": "^6.1.65",
"tough-cookie": "^5.0.0"
}
}