-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.46 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.46 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
{
"name": "@natlibfi/melinda-record-import-transformer-publication-archives",
"description": "Publication archives record transformer for the Melinda record batch import system",
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/natlibfi/melinda-record-import-transformer-publication-archives",
"bugs": {
"url": "https://github.com/natlibfi/melinda-record-import-transformer-publication-archives/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:natlibfi/melinda-record-import-transformer-publication-archives.git"
},
"license": "MIT",
"version": "3.2.2-alpha.2",
"main": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "esbuild \"src/**/*.js\" --sourcemap --platform=node --outdir=dist",
"start": "node dist/index.js",
"start:dev": "node src/index.js",
"cli": "node dist/cli.js",
"cli:dotenv": "npm run build && node -r dotenv/config dist/cli.js",
"lint": "eslint ./src",
"lint:dev": "eslint ./src --fix",
"test": "npm run lint && npm run test:base",
"test:only": "cross-env NODE_ENV=test node --test --test-only --test-force-exit --experimental-test-coverage --test-reporter=spec './src/**/*.test.js'",
"test:base": "cross-env NODE_ENV=test node --test --test-force-exit --experimental-test-coverage --test-reporter=spec './src/**/*.test.js'",
"test:kb": "NODE_ENV=test node --test --test-force-exit",
"watch:test": "cross-env DEBUG=@natlibfi/* NODE_ENV=test node --watch --test --experimental-test-coverage --test-reporter=spec './src/**/*.test.js'",
"dev": "npm run watch:test",
"dev:kb": "NODE_ENV=test node --test --watch",
"dev:debug": "cross-env LOG_LEVEL=debug DEBUG=@natlibfi/* NODE_ENV=test npm run watch:test"
},
"dependencies": {
"@natlibfi/marc-record": "^10.0.0",
"@natlibfi/marc-record-validate": "^9.0.0",
"@natlibfi/marc-record-validators-melinda": "^12.0.5",
"@natlibfi/melinda-backend-commons": "^3.0.0",
"@natlibfi/melinda-commons": "^14.0.0",
"@natlibfi/melinda-record-import-commons": "^13.0.0",
"amqplib": "^0.10.9",
"debug": "^4.4.3",
"langs": "^2.0.0",
"languagedetect": "^2.0.0",
"moment": "^2.30.1",
"xml-flow": "^1.0.4",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@natlibfi/fixugen": "^3.0.0",
"@natlibfi/fixura": "^4.0.0",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"esbuild": "^0.27.0",
"eslint": "^9.39.1"
},
"overrides": {
"nanoid": "^3.3.8",
"isbn3": "2.0.0"
}
}