-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 771 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
{
"name": "detailed-xml-validator",
"version": "1.1.0",
"description": "Validate for XML schema and returns all the possible failures",
"main": "./src/validator.js",
"scripts": {
"test": "npx nyc mocha specs/*.spec.js",
"coverage": "npx nyc report --reporter html --reporter text -t .nyc_output --report-dir .nyc_output/summary"
},
"keywords": [
"xsd",
"xml",
"validator",
"detail"
],
"repository": {
"type": "git",
"url": "https://github.com/NaturalIntelligence/detailed-xml-validator"
},
"author": "Amit Gupta (https://amitkumargupta.work/)",
"license": "MIT",
"dependencies": {
"fast-xml-parser": "^4.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.1",
"nyc": "^15.1.0"
}
}