-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1014 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1014 Bytes
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
{
"name": "htmltrust-server-reference",
"version": "0.1.0",
"description": "Reference implementation of the HTMLTrust trust directory API server",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"conformance": "node conformance/runner/with-reference-server.mjs",
"conformance:docker": "bash conformance/run-conformance.sh",
"conformance:runner": "node conformance/runner/run.mjs"
},
"keywords": [
"htmltrust",
"content-signing",
"trust-directory",
"web-trust"
],
"author": "Jason Grey <jason@jason-grey.com>",
"license": "LicenseRef-PolyForm-Noncommercial-1.0.0",
"dependencies": {
"@htmltrust/canonicalization": "github:HTMLTrust/htmltrust-canonicalization#v0.1.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"mongoose": "^8.14.1"
},
"devDependencies": {
"mongodb-memory-server": "^11.1.0",
"nodemon": "^3.1.10"
}
}