-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.17 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@i3m/conflict-resolver-service",
"version": "1.3.1",
"description": "The Conflict-Resolver Service (CSR) can be queried to provide a signed resolution about the non-repudiation protocol associated to an invoice being valid or invalid. It could be invoked by either the consumer or the provider. It is a core element of the Conflict Resolution system in i3-MARKET.",
"author": {
"name": "Juan Hernández Serrano",
"email": "[email protected]",
"url": "https://github.com/juanelas"
},
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "[email protected]:i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-ConflictResolverService.git"
},
"bugs": {
"url": "https://github.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-ConflictResolverService/issues"
},
"homepage": "https://github.com/i3-Market-V2-Public-Repository/SP3-SCGBSSW-CR-ConflictResolverService",
"keywords": [
"crs",
"conflict resolution",
"conflict",
"non-repudiation",
"i3-MARKET",
"i3m"
],
"engines": {
"node": ">=16.x"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"crs": "./dist/index.js",
"generateJwks": "./dist/generateJwks.js"
},
"directories": {
"build": "./build",
"dist": "./dist",
"types-src": "./src",
"spec": "./dist/spec",
"spec-src": "./src/spec-src"
},
"exports": {
".": "./dist/index.js",
"./openapi.yaml": "./dist/spec/openapi.yaml",
"./dist/spec/openapi.yaml": "./dist/spec/openapi.yaml",
"./openapi.json": "./dist/spec/openapi.json",
"./dist/spec/openapi.json": "./dist/spec/openapi.json",
"./oas-ts-types": "./dist/openapi.d.ts",
"./dist/openapi.d.ts": "./dist/openapi.d.ts"
},
"scripts": {
"openapi": "run-s openapi:json openapi:types",
"openapi:json": "ts-node build/createOASJsonBundle.ts",
"openapi:types": "ts-node build/openApiTypes.ts",
"tsc": "tsc -p tsconfig.build.json",
"lint": "ts-standard --fix ",
"build": "run-s clean openapi lint tsc",
"start": "node dist/index.js",
"predev": "npm run openapi",
"dev": "ts-node index.ts",
"clean": "rimraf dist src/spec/openapi.json src/spec/openapi.yaml src/openapi.ts",
"test": "mocha -r ts-node/register \"test/**/*.ts\"",
"git:add": "git add -A",
"version": "run-s build test git:add",
"postversion": "git push --follow-tags"
},
"ts-standard": {
"project": "./tsconfig.json",
"ignore": [
"dist/**/*"
]
},
"devDependencies": {
"@dtsgenerator/replace-namespace": "^1.5.1",
"@types/express": "^4.17.11",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.0",
"@types/morgan": "^1.9.2",
"@types/node": "^18.15.11",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dtsgenerator": "^3.13.2",
"js-yaml": "^4.1.0",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"openapi-types": "^12.1.0",
"rimraf": "^5.0.0",
"ts-node": "^10.4.0",
"ts-standard": "^12.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@i3m/non-repudiation-library": "^2.0.0",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-openapi-validator": "^5.0.3",
"morgan": "^1.10.0"
}
}