forked from cdegalitt/libxmljs2-xsd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.43 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "libxmljs2-xsd",
"version": "0.30.1",
"description": "XSD 1.0 validator based on libxmljs2",
"main": "index.js",
"scripts": {
"test": "mocha test/index.js",
"docs": "jsdoc2md index.js --template readme.hbs > README.md"
},
"keywords": [
"xsd",
"xml",
"schema",
"validation",
"libxml"
],
"author": "Christophe DELIQUAIRE <[email protected]>",
"contributors": [
{
"name": "Alban Mouton",
"email": "[email protected]"
},
{
"name": "Christophe DELIQUAIRE",
"email": "[email protected]"
},
{
"name": "Walter Martins",
"email": "[email protected]"
},
{
"name": "Rodrigo Pastro",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "Christophe DELIQUAIRE",
"email": "[email protected]",
"web": "https://www.galitt.com"
}
],
"homepage": "https://github.com/cdegalitt/libxmljs2-xsd",
"bugs": {
"url": "https://github.com/cdegalitt/libxmljs2-xsd/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cdegalitt/libxmljs2-xsd.git"
},
"license": "MIT",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"bindings": "~1.5.0",
"nan": "~2.15.0",
"libxmljs2": "^0.30.1"
},
"devDependencies": {
"mocha": "^8.1.1",
"should": "^13.2.3",
"jsdoc-to-markdown": "^6.0.1"
}
}