generated from digitalcredentials/isomorphic-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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": "@digitalcredentials/transaction-service",
"description": "An express app for managing challenges in a DIDAuth exchange.",
"version": "0.3.0",
"type": "module",
"scripts": {
"start": "node -r dotenv/config server.js",
"dev": "nodemon -r dotenv/config server.js",
"dev-noenv": "nodemon server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx c8 mocha --timeout 10000 -r dotenv/config dotenv_config_path=src/test-fixtures/.env.testing src/app.test.js ",
"coveralls": "npm run test; npx c8 report --reporter=text-lcov > ./coverage/lcov.info",
"prepare": "test -d node_modules/husky && husky install || echo \"husky is not installed\"",
"lint": "eslint",
"lint-fix": "eslint --fix"
},
"dependencies": {
"@digitalbazaar/ed25519-signature-2020": "^5.4.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"@digitalbazaar/vc": "^7.0.0",
"@digitalcredentials/security-document-loader": "^6.0.0",
"axios": "^1.7.7",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"keyv": "^4.5.2",
"keyv-file": "^0.2.0",
"morgan": "~1.9.1",
"nodemailer": "^6.9.14"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mocha": "^10.2.0",
"nock": "^13.5.4",
"nodemon": "^2.0.21",
"prettier": "3.2.5",
"supertest": "^6.3.3"
},
"keywords": [
"dcc"
],
"engines": {
"node": ">=16.0"
},
"author": {
"name": "Digital Credentials Consortium",
"url": "https://github.com/digitalcredentials/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/digitalcredentials/transaction-manager-service"
},
"homepage": "https://github.com/digitalcredentials/transaction-manager-service",
"bugs": "https://github.com/digitalcredentials/transaction-manager-service/issues",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}