-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hds-lib",
"version": "1.0.0",
"description": "Health Data Safe - Library",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "tsc",
"test": "NODE_ENV=test mocha tests --test-reporter=spec",
"test:coverage": "NODE_ENV=test c8 mocha tests --test-reporter=spec",
"test:coverage:ci": "NODE_ENV=test c8 mocha tests --test-reporter=spec --timeout=20000",
"build": "webpack --config webpack.config.cjs",
"setup": "sh scripts/setup.sh",
"deploy": "bash scripts/deploy.sh",
"build:ts": "tsc",
"build:webpack": "webpack --config webpack.config.cjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:change": "eslint $(git diff --name-only HEAD | grep -E '\\.(js|jsx|ts|tsx)$' | xargs)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/healthdatasafe/hds-lib-js.git"
},
"main": "js/index.js",
"types": "js/index.d.ts",
"exports": {
".": {
"types": "./js/index.d.ts",
"default": "./js/index.js"
},
"./ts/*": "./ts/*",
"./js/*": "./js/*"
},
"keywords": [
"HDS",
"Health",
"Data",
"Safe"
],
"author": "HDS",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/healthdatasafe/hds-lib-js/issues"
},
"homepage": "https://github.com/healthdatasafe/hds-lib-js#readme",
"devDependencies": {
"assert": "^2.1.0",
"c8": "^10.1.3",
"copy-webpack-plugin": "^13.0.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"mocha": "^11.5.0",
"neostandard": "^0.12.0",
"process": "^0.11.10",
"ts-loader": "^9.5.4",
"typescript-eslint": "^8.20.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@pryv/cmc": "1.1.1",
"@pryv/monitor": "3.4.1",
"@pryv/socket.io": "3.4.1",
"ajv": "^8.20.0",
"events": "^3.3.0",
"pryv": "3.4.1",
"short-unique-id": "^5.3.2"
}
}