-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
78 lines (78 loc) · 2.46 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
{
"name": "@mia-platform/custom-plugin-lib",
"version": "7.0.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": "[email protected]"
},
"license": "Apache-2.0",
"author": "Mia Platform Core Team <[email protected]>",
"contributors": [
"Tommaso Allevi <[email protected]>",
"Luca Scannapieco <[email protected]>",
"Paolo Sarti <[email protected]>",
"Jacopo Andrea Giola <[email protected]>",
"Davide Bianchi <[email protected]>",
"Riccardo Di Benedetto <[email protected]>",
"Luca Marzi <[email protected]>",
"Fabio Percivaldi <[email protected]>",
"Francesco Francomano <[email protected]>"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mia-platform/custom-plugin-lib.git"
},
"scripts": {
"checkonly": "! grep -R '\\.only' tests/",
"coverage": "npm run unit -- --coverage-report=text-summary",
"postcoverage": "tap --coverage-report=html --no-browser",
"lint": "eslint . --ignore-path .gitignore",
"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 -b -o tap.log tests/*.test.js",
"version": "./scripts/update-version.sh ${npm_package_version} && git add CHANGELOG.md"
},
"dependencies": {
"@fastify/env": "^4.2.0",
"@fastify/formbody": "^7.0.0",
"@mia-platform/lc39": "^8.0.0",
"@types/node": "^18.15.3",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.7.9",
"fastify-plugin": "^4.5.0",
"http-errors": "^2.0.0",
"pino": "^8.0.0",
"simple-get": "^4.0.1"
},
"devDependencies": {
"@fastify/routes": "^5.1.0",
"@mia-platform/eslint-config-mia": "^3.0.0",
"eslint": "^8.40.0",
"hpagent": "^1.2.0",
"nock": "^13.3.1",
"proxy": "^2.0.1",
"split2": "^4.2.0",
"swagger-parser": "^10.0.3",
"tap": "^16.3.4",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
},
"eslintConfig": {
"extends": "@mia-platform/eslint-config-mia"
},
"tap": {
"check-coverage": false
}
}