-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.79 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@mdn/mdn-http-observatory",
"version": "1.6.2",
"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",
"packageManager": "npm@11.9.0",
"engines": {
"node": ">=24"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=11.8.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 node --test --test-concurrency=1 'test/**/*.test.js'",
"capture-fixtures": "node scripts/capture-fixtures.js",
"tsc": "tsc -p jsconfig.json",
"updateHsts": "node src/retrieve-hsts.js",
"updateTldList": "node src/retrieve-tld-list.js",
"refreshMaterializedViews": "node src/maintenance/index.js",
"maintenance": "node src/maintenance/index.js",
"migrate": "node -e 'import(\"./src/database/migrate.js\").then( m => m.migrateDatabase() )'",
"postinstall": "npm run updateHsts && npm run updateTldList"
},
"bin": {
"mdn-http-observatory-scan": "bin/wrapper.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mdn/mdn-http-observatory.git"
},
"license": "MPL-2.0",
"devDependencies": {
"@faker-js/faker": "^10.0.0",
"@supercharge/promise-pool": "^3.2.0",
"@types/chai": "^5.2.2",
"@types/convict": "^6.1.6",
"@types/ip": "^1.1.3",
"@types/pg": "^8.20.0",
"@types/pg-format": "^1.0.5",
"@types/tough-cookie": "^4.0.5",
"chai": "^6.2.0",
"json-schema-to-jsdoc": "^1.1.1",
"lefthook": "^2.0.14",
"nodemon": "^3.1.10",
"prettier-eslint": "^16.4.2",
"typescript": "^6.0.2"
},
"dependencies": {
"@fastify/cors": "^11.0.1",
"@fastify/helmet": "^13.0.0",
"@fastify/postgres": "^6.0.1",
"@fastify/static": "^9.0.0",
"@sentry/node": "^10.1.0",
"axios": "^1.10.0",
"axios-cookiejar-support": "^7.0.0",
"change-case": "^5.4.4",
"commander": "^15.0.0",
"convict": "^6.2.4",
"dayjs": "^1.11.13",
"fastify": "^5.4.0",
"fastify-simple-form": "^3.0.0",
"htmlparser2": "^12.0.0",
"http-cookie-agent": "^8.0.0",
"ip": "^2.0.1",
"node_extra_ca_certs_mozilla_bundle": "^1.0.7",
"pg": "^8.16.2",
"pg-format": "^1.0.4",
"pg-pool": "^3.10.1",
"postgrator": "^8.0.0",
"postgrator-cli": "^9.0.0",
"tldts": "^7.0.12",
"tough-cookie": "^5.0.0"
},
"optionalDependencies": {
"pg-native": "^3.7.0"
}
}