-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
37 lines (37 loc) · 847 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
{
"name": "libxml-xsd",
"version": "0.5.2",
"description": "XSD validator based on libxml",
"main": "index.js",
"scripts": {
"test": "mocha -R spec",
"docs": "jsdoc2md index.js --template readme.hbs > README.md"
},
"keywords": [
"xsd",
"xml",
"schema",
"validation",
"libxml"
],
"author": "Alban Mouton <[email protected]>",
"homepage": "https://github.com/albanm/node-libxml-xsd",
"bugs": {
"url": "https://github.com/albanm/node-libxml-xsd/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/albanm/node-libxml-xsd.git"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.2.1",
"libxmljs-mt": "^0.18.0",
"nan": "^2.6.2"
},
"devDependencies": {
"mocha": "^1.21.4",
"should": "^4.0.4",
"jsdoc-to-markdown": "^3.0.0"
}
}