forked from nikku/node-xsd-schema-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 857 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 857 Bytes
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
{
"name": "xsd-schema-validator",
"version": "0.8.1",
"description": "A (XSD) schema validator for nodejs",
"main": "lib/validator.js",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha",
"postinstall": "node ./lib/post-install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nikku/node-xsd-schema-validator"
},
"engines": {
"node": ">= 16"
},
"keywords": [
"xsd",
"xml",
"schema",
"validator",
"validation"
],
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"devDependencies": {
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.2"
},
"dependencies": {
"which": "^4.0.0"
},
"files": [
"lib",
"support"
]
}