-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "mailvelope-keyserver",
"version": "4.1.0",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/mailvelope/keyserver.git"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"start": "node src",
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:lint": "eslint --ignore-pattern \"**/*.min.js\" config src test",
"test:unit": "mocha --require ./test/setup.mjs --recursive ./test/unit",
"test:purify": "mocha --require ./test/setup.mjs --recursive ./test/unit/purify-key-test.js",
"test:public": "mocha --require ./test/setup.mjs --recursive ./test/integration/public-key-test.js",
"test:integration": "mocha --exit --require ./test/setup.mjs --recursive ./test/integration",
"release": "npm run release:install && npm run release:archive",
"release:install": "rm -rf node_modules/ && npm ci --production",
"release:archive": "zip -rq release.zip package.json package-lock.json node_modules/ *.js src/ config/ locales/",
"clean": "node src/tools/clean"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.10",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"hapi-i18n": "^3.0.1",
"mongodb": "^6.9.0",
"nodemailer": "^6.9.15",
"openpgp": "^5.11.2",
"winston": "^3.14.2",
"winston-syslog": "^2.7.1"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"bootstrap": "^3.4.1",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"jquery": "^3.7.1",
"mocha": "^10.7.3",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
}
}