-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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
{
"name": "@smartdcc/duis-parser",
"version": "0.7.0",
"description": "Lightweight utility script wrapper around fast-xml-parser tuned for DUIS",
"main": "dist/index.js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/SmartDCCInnovation/duis-parser.git"
},
"bugs": {
"url": "https://github.com/SmartDCCInnovation/duis-parser/issues"
},
"homepage": "https://github.com/SmartDCCInnovation/duis-parser#readme",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"prebuild": "del dist",
"build": "tsc",
"prepack": "npm run build",
"lint": "eslint src/",
"prettier-check": "prettier -c \"src/**/*.{css,html,ts,json,md,yaml,yml}\""
},
"dependencies": {
"fast-xml-parser": "^5.0.9"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"del-cli": "^7.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^17.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"typescript-eslint": "^8.2.0"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"author": {
"name": "Karim Kanso",
"email": "Karim.Kanso@smartdcc.co.uk"
},
"license": "GPL-3.0-or-later",
"keywords": [
"duis",
"backend",
"smartdcc",
"smartmeter",
"smets2",
"xml"
]
}