-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 2.81 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
{
"name": "@natlibfi/melinda-oai-pmh-provider",
"description": "Melinda OAI-PMH provider",
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/natlibfi/melinda-oai-pmh-provider",
"bugs": {
"url": "https://github.com/natlibfi/melinda-oai-pmh-provider/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:natlibfi/melinda-oai-pmh-provider.git"
},
"license": "Apache-2.0",
"version": "1.0.0",
"main": "./dist/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node dist/index.js",
"cli": "node dist/cli.js",
"lint": "eslint src",
"lint:dev": "eslint --fix src",
"test:base": "cross-env NODE_ENV=test nyc mocha --require @babel/register --parallel",
"test": "npm run lint && npm run test:base -- 'src/**/*.spec.js'",
"test:dev": "npm run lint:dev && npm run test:base -- 'src/**/*.spec.js' && npm run coverage",
"coverage": "nyc check-coverage --per-file",
"build": "babel src --source-maps --copy-files --delete-dir-on-start --out-dir=dist --minified",
"build:dev": "babel src --source-maps --copy-files --delete-dir-on-start --out-dir=dist",
"watch:test": "cross-env DEBUG=1 NODE_ENV=test nodemon -w src --exec 'npm run test:dev'",
"watch:dev": "cross-env DEBUG=1 nodemon -w src --exec 'babel-node src/index.js'"
},
"dependencies": {
"@babel/runtime": "^7.12.0",
"@natlibfi/marc-record": "^6.1.1",
"@natlibfi/marc-record-serializers": "^7.1.6",
"@natlibfi/melinda-backend-commons": "^2.0.2",
"@natlibfi/melinda-commons": "^11.1.1",
"@natlibfi/oracledb-aleph": "^5.0.0",
"express": "^4.16.4",
"http-status": "^1.3.1",
"langs": "^2.0.0",
"moment": "^2.29.0",
"xml2js": ">=0.4.22 <1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.12.0",
"@babel/register": "^7.12.0",
"@natlibfi/eslint-config-melinda-backend": "^1.0.5",
"@natlibfi/fixugen": "^1.0.0",
"@natlibfi/fixugen-http-server": "^1.0.4",
"@natlibfi/fixura": "^2.1.3",
"@natlibfi/oracledb-mock": "^1.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.5",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@natlibfi/melinda-backend"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "maintained node versions"
}
]
],
"env": {
"test": {
"plugins": [
"istanbul",
"rewire"
]
}
}
},
"nyc": {
"exclude": [
"**/*.spec.js"
],
"reporter": [
"lcov",
"html"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80
}
}