-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "mia_template_service_name_placeholder",
"version": "0.1.0",
"description": "%CUSTOM_PLUGIN_SERVICE_DESCRIPTION%",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"scripts": {
"checkonly": "! grep -R '\\.only' tests/",
"coverage": "npm run unit -- --coverage-report=text-summary",
"postcoverage": "tap --coverage-report=lcov --no-browser",
"lint": "eslint . --ignore-path .gitignore",
"start": "lc39 index.js",
"start:local": "npm start -- --env-path ./default.env",
"test": "npm run lint && npm run unit && npm run checkonly",
"unit": "CRUD_PATH=${CRUD_PATH:-crud-service} tap -b tests/*.test.js"
},
"dependencies": {
"fastify": "^2.15.1",
"@mia-platform/custom-plugin-lib": "^5.0.0"
},
"devDependencies": {
"@mia-platform/eslint-config-mia": "^3.0.0",
"eslint": "^8.17.0",
"nock": "^13.2.6",
"tap": "^16.2.0"
},
"private": true,
"eslintConfig": {
"extends": "@mia-platform/eslint-config-mia"
},
"tap": {
"statements": 80,
"branches": 100,
"functions": 70,
"lines": 80
}
}