-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.17 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.17 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@bedrock-engineer/bro-xml-parser",
"version": "0.1.5",
"description": "Schema-driven parser for Dutch BRO (Basisregistratie Ondergrond) geotechnical and geological XML data",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"browser": {
"types": "./dist/browser.d.ts",
"import": "./dist/browser.js",
"default": "./dist/browser.js"
},
"node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"default": "./dist/node.js"
},
"default": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"./browser": {
"types": "./dist/browser.d.ts",
"import": "./dist/browser.js",
"default": "./dist/browser.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"default": "./dist/node.js"
},
"./reference-codes": {
"types": "./dist/reference-codes-entry.d.ts",
"import": "./dist/reference-codes-entry.js",
"default": "./dist/reference-codes-entry.js"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --project=unit",
"test:node": "vitest run --project=node",
"test:browser": "vitest run --project=browser",
"test:browser:ui": "vitest --project=browser --ui",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"knip": "knip",
"codegen:reference-codes": "npx tsx scripts/codegen-reference-codes.ts"
},
"keywords": [
"bro",
"imbro",
"bro/xml",
"geotechnical",
"cpt",
"bore",
"soil",
"gef"
],
"author": "Jules Blom @ Bedrock.engineer",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bedrock-engineer/bro-parser-js.git"
},
"bugs": {
"url": "https://github.com/bedrock-engineer/bro-parser-js/issues"
},
"homepage": "https://github.com/bedrock-engineer/bro-parser-js#readme",
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/node": "^25.3.0",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"@xmldom/xmldom": "^0.8.11",
"eslint": "^9.39.3",
"fontoxpath": "^3.34.0",
"knip": "^5.85.0",
"playwright": "^1.40.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@xmldom/xmldom": "^0.8.11",
"fontoxpath": "^3.34.0"
},
"peerDependenciesMeta": {
"@xmldom/xmldom": {
"optional": true
},
"fontoxpath": {
"optional": true
}
},
"engines": {
"node": ">=16.0.0"
},
"prettier": {
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 100
}
}