-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 3.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
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
{
"name": "mvom",
"private": true,
"version": "3.0.1",
"description": "Multivalue Object Mapper",
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm-run-all build:node build:unibasic build:copy-files build:declaration",
"build:copy-files": "babel-node --extensions .ts,.js ./scripts/copy-files",
"build:declaration": "tsc --project tsconfig.build.json --outDir ./dist",
"build:node": "babel ./src --env-name build --out-dir ./dist --extensions .ts,.js",
"build:unibasic": "babel-node --extensions .ts,.js ./scripts/prepare-unibasic",
"clean": "npm run clean:build",
"clean:build": "rimraf ./dist",
"lint": "eslint . --ext cjs,mjs,js,ts,tsx && echo \"eslint: no lint errors\"",
"lint:fix": "eslint . --ext cjs,mjs,js,ts,tsx --fix && echo \"eslint: no lint errors\"",
"prebuild": "npm run clean:build",
"prettier": "prettier . --ignore-unknown --check",
"prettier:fix": "prettier . --ignore-unknown --write",
"style:fix": "npm-run-all prettier:fix lint:fix",
"test": "npm-run-all --parallel typecheck prettier lint && npm run test:coverage:summary",
"test:unit": "jest",
"test:ci": "node --expose-gc --no-compilation-cache --max-old-space-size=512 ./node_modules/jest/bin/jest --ci --maxWorkers=4 --reporters=default --collectCoverage --coverageReporters text-summary",
"test:coverage": "jest --collectCoverage --coverageReporters text",
"test:coverage:html": "jest --collectCoverage --coverageReporters html",
"test:coverage:summary": "jest --collectCoverage --coverageReporters text-summary",
"typecheck": "tsc --noEmit && echo \"tsc: no typecheck errors\""
},
"repository": {
"type": "git",
"url": "https://github.com/STORIS/mvom"
},
"keywords": [
"node",
"multivalue",
"database"
],
"author": "STORIS",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.26.0",
"async-mutex": "^0.5.0",
"axios": "^1.7.7",
"date-fns": "^4.1.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/node": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/fs-extra": "11.0.4",
"@types/jest-when": "3.5.5",
"@types/lodash": "4.17.13",
"@types/node": "22.9.0",
"@types/nunjucks": "3.2.6",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"babel-plugin-module-resolver": "5.0.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-babel-module": "5.3.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"jest": "29.7.0",
"jest-mock-extended": "3.0.7",
"jest-when": "3.6.0",
"npm-run-all2": "6.2.6",
"nunjucks": "3.2.4",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.6.3"
},
"types": "index.d.ts"
}