-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.41 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
{
"name": "@mia-platform/custom-plugin-lib",
"version": "8.1.1",
"description": "Library that allows you to define Mia-Platform custom plugins easily",
"keywords": [
"mia-platform",
"plugin",
"http-server"
],
"homepage": "https://www.mia-platform.eu/",
"bugs": {
"url": "https://github.com/mia-platform/custom-plugin-lib/issues",
"email": "core@mia-platform.eu"
},
"license": "Apache-2.0",
"author": "Mia Platform Core Team <core@mia-platform.eu>",
"contributors": [
"Tommaso Allevi <tomallevi@gmail.com>",
"Luca Scannapieco <luca.scannapieco@mia-platform.eu>",
"Paolo Sarti <paolo.sarti@mia-platform.eu>",
"Jacopo Andrea Giola <jacopo@giola.org>",
"Davide Bianchi <bianchidavide12@gmail.com>",
"Riccardo Di Benedetto <dibe.ricky@gmail.com>",
"Luca Marzi <luca.marzi@mail.polimi.it>",
"Fabio Percivaldi <fabio.percivaldi@hotmail.it>",
"Francesco Francomano <silversoulKali@gmail.com>"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mia-platform/custom-plugin-lib.git"
},
"scripts": {
"checkonly": "! grep -R '\\.only' tests/",
"coverage": "npm run unit && tap report --allow-incomplete-coverage text-summary",
"postcoverage": "tap report --allow-incomplete-coverage html --no-browser",
"lint": "eslint .",
"start": "echo 'unable to start the library directly' && exit 1",
"test": "npm run lint && npm run unit && npm run checkonly && npm run typescript",
"typescript": "tsc --project ./tests/types/tsconfig.json",
"unit": "tap --allow-incomplete-coverage -o tap.log tests/*.test.js",
"version": "./scripts/update-version.sh ${npm_package_version} && git add CHANGELOG.md"
},
"dependencies": {
"@fastify/env": "^6.0.0",
"@fastify/formbody": "^8.0.2",
"@mia-platform/lc39": "^9.1.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"axios": "^1.15.2",
"fastify-plugin": "^5.1.0",
"http-errors": "^2.0.1",
"pino": "^10.3.1",
"simple-get": "^4.0.1"
},
"devDependencies": {
"@fastify/routes": "^6.0.2",
"@mia-platform/eslint-config-mia": "^10.0.0",
"@types/node": "^24.1.0",
"eslint": "^10.0.0",
"fastify": "^5.6.1",
"hpagent": "^1.2.0",
"nock": "^13.3.1",
"proxy": "^4.0.0",
"split2": "^4.2.0",
"swagger-parser": "^10.0.3",
"tap": "^21.6.2",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22"
}
}