-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.75 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
{
"name": "governify-reporter",
"buildOn": "2020-11-05",
"version": "2.9.1",
"description": "A reporter for Governify project",
"homepage": "https://github.com/governify/reporter",
"main": "index.js",
"dependencies": {
"@oas-tools/oas-telemetry": "^0.7.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"elastic-apm-node": "^3.13.0",
"express": "^4.16.3",
"governify-commons": "^1.19.0",
"helmet": "^3.12.0",
"influx": "^5.8.0",
"js-yaml": "^3.14.1",
"json2csv": "3.11.5",
"JSONStream": "^1.3.2",
"moment-timezone": "^0.5.33",
"mustache": "^4.2.0",
"rrule": "^2.6.8",
"swagger-tools": "^0.10.3",
"yaml": "^2.8.0"
},
"devDependencies": {
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"semistandard": "^14.2.0"
},
"scripts": {
"start": "node index.js",
"lint": "semistandard",
"lint-fix": "semistandard --fix",
"test": "mocha ./tests/test.js --timeout 20000 -s 20",
"coverage": "nyc --reporter=lcov mocha ./tests/test.js --timeout 20000 -s 20",
"precommit": "semistandard --fix && nyc mocha ./tests/test.js --timeout 20000 -s 20"
},
"semistandard": {
"ignore": [
"/webpack.config.js",
"/tests/**",
"/src/frontend/**",
"/src/backend/controllers/v1/**",
"/src/backend/controllers/v2/**",
"/src/backend/controllers/v3/**"
]
},
"keywords": [
"template",
"nodejs",
"node",
"project"
],
"author": {
"name": "ISA group",
"web": "http://www.isa.us.es/"
},
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/governify/reporter"
},
"docker": {
"url": "https://hub.docker.com/r/governify/reporter"
}
}