-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
46 lines (46 loc) · 996 Bytes
/
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
{
"name": "xsd-schema-validator",
"version": "0.10.0",
"description": "A (XSD) schema validator for nodejs",
"main": "lib/validator.js",
"scripts": {
"all": "run-s lint check-types test",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"test": "mocha",
"postinstall": "node ./lib/post-install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nikku/node-xsd-schema-validator"
},
"engines": {
"node": ">= 18"
},
"keywords": [
"xsd",
"xml",
"schema",
"validator",
"validation"
],
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"chai": "^4.5.0",
"eslint": "^8.56.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"mocha": "^10.8.2",
"npm-run-all2": "^7.0.1",
"typescript": "^5.6.3"
},
"dependencies": {
"which": "^5.0.0"
},
"files": [
"lib",
"support"
]
}