-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 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
{
"name": "lib-bridge-js",
"version": "0.6.1",
"description": "Bridge framework library for HDS partner integrations",
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": "./dist/src/index.js",
"./test": "./dist/tests/helpers/testServer.js",
"./*": "./*"
},
"engines": {
"npm": ">=9.6.5",
"node": ">=24"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"start": "NODE_ENV=test LOGS=info node src/start.ts --config localConfig.yml",
"setup": "scripts/setup.sh",
"setup-dev-env": "scripts/setup-dev-env.sh",
"test": "NODE_ENV=test node node_modules/mocha/bin/mocha.js 'tests/**/*.test.ts' --test-reporter=spec -- --config localConfig.yml",
"test:coverage": "NODE_ENV=test c8 node node_modules/mocha/bin/mocha.js 'tests/**/*.test.ts' -- --config localConfig.yml",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:change": "eslint $(git diff --name-only HEAD | grep -E '\\.(ts|tsx)$' | xargs)",
"typecheck": "tsc --noEmit"
},
"author": "Health Data Safe",
"license": "BSD-3-Clause",
"dependencies": {
"@pryv/boiler": "^1.2.6",
"backloop.dev": "^2.0.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-promise-router": "^4.1.1",
"hds-lib": "github:healthdatasafe/hds-lib-js",
"memored": "^1.1.1",
"short-unique-id": "^5.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/mocha": "^10.0.10",
"@types/node": "^22.5.5",
"@types/supertest": "^6.0.3",
"c8": "^9.1.0",
"eslint": "^9.0.0",
"mocha": "^10.7.3",
"neostandard": "^0.12.0",
"supertest": "^7.0.0",
"supertest-session": "^5.0.1",
"typescript": "^5.9.3"
}
}