This repository was archived by the owner on Feb 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 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
68
69
{
"name": "@unsync/veolia-client",
"type": "module",
"version": "1.0.16",
"license": "MIT",
"repository": "unsync/veolia-client",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rm -Rf dist && tsc",
"prepack": "npm run build",
"checkdeps": "ncu",
"checkdeps:apply": "ncu -u",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"release:major": "npm version -m 'release:major' major",
"release:minor": "npm version -m 'release:minor' minor",
"release:patch": "npm version -m 'release:patch' patch",
"postversion": "git push origin HEAD && git push origin v$npm_package_version",
"run:dev": "tsx src/run.ts",
"test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"fast-xml-parser": "^4.3.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.12.7",
"eslint": "^9.34.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"ts-jest": "^29.4.1",
"tsx": "^4.20.4",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix . --no-warn-ignored"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
}
}
}