generated from digitalcredentials/isomorphic-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "@digitalcredentials/workflow-coordinator",
"version": "1.0.1",
"private": true,
"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 mocha --timeout 10000 -r dotenv/config dotenv_config_path=src/test-fixtures/.env.testing src/app.test.js "
},
"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.4.0",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"morgan": "~1.9.1",
"winston": "^3.9.0"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nock": "^13.3.1",
"nodemon": "^2.0.21",
"supertest": "^6.3.3"
},
"keywords": [
"dcc"
],
"engines": {
"node": ">=20.0"
},
"author": {
"name": "Digital Credentials Consortium",
"url": "https://github.com/digitalcredentials/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/digitalcredentials/workflow-coordinator"
},
"homepage": "https://github.com/digitalcredentials/workflow-coordinator",
"bugs": "https://github.com/digitalcredentials/workflow-coordinator/issues"
}