-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.15 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.15 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
73
74
{
"name": "@mia-platform/lc39",
"version": "9.1.0",
"description": "The Mia-Platform Node.js service launcher",
"keywords": [
"cli",
"launcher"
],
"homepage": "https://www.mia-platform.eu/",
"bugs": {
"url": "https://github.com/mia-platform/lc39/issues",
"email": "core@mia-platform.eu"
},
"types": "lc39.d.ts",
"license": "Apache-2.0",
"author": "Mia Platform Core Team <core@mia-platform.eu>",
"contributors": [
"Jacopo Andrea Giola <jacopo@giola.org>",
"Francesco Francomano <silversoulKali@gmail.com>",
"Federico Maggi <federicomaggi92@gmail.com>",
"Song Le Jin <songle.jin@mia-platform.eu>",
"Tommaso Allevi <tomallevi@gmail.com>",
"Federico Maggi <federico.maggi@mia-platform.eu>"
],
"main": "index.js",
"bin": {
"lc39": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mia-platform/lc39.git"
},
"scripts": {
"checkonly": "! grep -R '\\.only' tests/",
"coverage": "npm run unit -- --coverage-report=text-summary --coverage-report=lcov --no-browser",
"lint": "eslint .",
"test": "npm run lint && npm run coverage && npm run test:types && npm run checkonly",
"unit": "tap -b -o tap.log tests/*.test.js",
"version": "./scripts/update-version.sh ${npm_package_version} && git add CHANGELOG.md",
"test:types": "tsd"
},
"dependencies": {
"@fastify/sensible": "^6.0.4",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.6",
"@opentelemetry/auto-instrumentations-node": "^0.76.0",
"@opentelemetry/sdk-node": "^0.218.0",
"@opentelemetry/sdk-trace-base": "^2.7.0",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"dotenv-expand": "^13.0.0",
"fastify": "^5.8.5",
"fastify-metrics": "^13.2.0",
"fastify-plugin": "^5.1.0",
"lodash": "^4.18.1",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"ajv": "^8.18.0",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"split2": "^4.2.0",
"swagger-parser": "^10.0.3",
"tap": "^21.7.4",
"tsd": "^0.33.0"
},
"engines": {
"node": ">=22"
},
"tap": {
"allow-incomplete-coverage": true
}
}