-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "@nmshd/content",
"description": "The content library defines data structures that can be transmitted using the transport library.",
"homepage": "https://enmeshed.eu",
"repository": {
"type": "git",
"url": "git+https://github.com/nmshd/runtime.git",
"directory": "packages/content"
},
"license": "MIT",
"author": "j&s-soft AG",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:node",
"build:ci": "npm run build:node && ../../.ci/writeBuildInformation.sh",
"build:node": "tsc -p tsconfig.json && madge --circular dist",
"build:notest": "npm run build:node",
"cdep": "tsc && madge --circular dist",
"lint:tsc": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
"test": "jest",
"test:ci": "jest -i --coverage"
},
"jest": {
"collectCoverageFrom": [
"./src/**"
],
"coverageProvider": "v8",
"coverageReporters": [
"text-summary",
"cobertura",
"lcov"
],
"maxWorkers": 5,
"preset": "ts-jest",
"setupFilesAfterEnv": [
"jest-expect-message"
],
"testEnvironment": "node",
"testTimeout": 60000,
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "test/tsconfig.json"
}
]
}
},
"dependencies": {
"@js-soft/ts-serval": "2.0.11",
"@nmshd/core-types": "*",
"@nmshd/iql": "^1.0.2",
"luxon": "^3.5.0",
"ts-simple-nameof": "^1.3.1"
},
"devDependencies": {
"@types/luxon": "^3.4.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}