-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@natlibfi/melinda-record-import-api",
"description": "API microservice of Melinda record batch import system",
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/natlibfi/melinda-record-import-api",
"bugs": {
"url": "https://github.com/natlibfi/melinda-record-import-api/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:natlibfi/melinda-record-import-api.git"
},
"license": "MIT",
"version": "1.0.7",
"main": "./dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node ./dist/index",
"start:dev": "babel-node src/index.js",
"lint": "eslint src",
"lint:dev": "eslint --fix src",
"test:base": "cross-env NODE_ENV=test nyc mocha --package package.json --exit",
"test": "npm run lint && npm run test:base",
"test:dev": "npm run lint:dev && npm run test:base",
"build": "babel src --source-maps --copy-files --delete-dir-on-start --out-dir=dist",
"dev": "cross-env DEBUG=@natlibfi/* LOG_LEVEL=debug nodemon"
},
"dependencies": {
"@babel/runtime": "^7.24.5",
"@natlibfi/melinda-backend-commons": "^2.3.1",
"@natlibfi/melinda-commons": "^13.0.13",
"@natlibfi/melinda-record-import-commons": "^11.0.0",
"@natlibfi/melinda-rest-api-client": "^4.0.3",
"@natlibfi/melinda-rest-api-commons": "^4.1.7",
"@natlibfi/passport-natlibfi-keycloak": "^2.2.0-alpha.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.19.2",
"express-content-length-validator": "^1.0.0",
"http-status": "^1.7.4",
"moment": "^2.30.1",
"mongo-sanitize": "^1.1.0",
"mongodb": "^6.8.0",
"passport": "^0.7.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/node": "^7.23.9",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.24.5",
"@babel/register": "^7.23.7",
"@natlibfi/eslint-config-melinda-backend": "^3.0.5",
"@natlibfi/fixugen": "^2.0.10",
"@natlibfi/fixura": "^3.0.10",
"@natlibfi/fixura-mongo": "^2.0.19",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@natlibfi/melinda-backend"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": [
"last 2 versions",
"maintained node versions"
]
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"mocha": {
"spec": [
"src/**/*.spec.js"
],
"require": [
"@babel/register"
],
"bail": true
},
"nodemonConfig": {
"exec": "npm run test:dev",
"watch": [
"src/*",
"test-fixtures/*"
]
},
"nyc": {
"include": [
"src/interfaces/*.js"
],
"exclude": [
"**/*.spec.js"
],
"reporter": [
"text"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80
}
}