-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.82 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
{
"name": "governify-registry",
"buildOn": "2018-04-18",
"version": "3.8.0",
"description": "Central repository for agreements",
"homepage": "https://github.com/isa-group/governify-registry",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.9.0"
},
"main": "index.js",
"keywords": [
"governify",
"registry",
"agreements"
],
"license": "GPL-2.0",
"private": true,
"dependencies": {
"@apidevtools/json-schema-ref-parser": "11.7.3",
"@oas-tools/oas-telemetry": "0.7.1",
"ajv": "8.17.1",
"bluebird": "3.7.2",
"compression": "1.7.5",
"cors": "2.8.5",
"deep-diff": "1.0.2",
"elastic-apm-node": "4.10.0",
"express": "4.21.2",
"governify-agreement-manager": "0.0.9",
"governify-commons": "1.19.0",
"helmet": "8.0.0",
"js-yaml": "4.1.0",
"JSONStream": "1.3.5",
"moment-timezone": "0.5.46",
"mongoose": "8.9.5",
"oas-tools": "3.1.0",
"swagger-ui-express": "5.0.1"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@stylistic/eslint-plugin-js": "2.13.0",
"eslint": "9.18.0",
"globals": "15.14.0",
"mocha": "11.0.1",
"mongodb-memory-server": "10.1.3",
"nodemon": "3.1.9"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch --env-file=.env index.js",
"test": "mocha ./tests/test.js --timeout 20000 -s 20",
"lint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint --ignore-pattern tests",
"lint-fix": "eslint . --fix --max-warnings=0 --cache --cache-location node_modules/.cache/eslint --ignore-pattern tests"
},
"author": {
"name": "ISA group",
"web": "http://www.isa.us.es/"
},
"repository": {
"type": "git",
"url": "https://github.com/governify/registry"
},
"docker": {
"url": "https://hub.docker.com/r/governify/registry"
}
}