forked from Leonidas-from-XIV/node-xml2js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·42 lines (42 loc) · 931 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
{
"name": "xml2js-expat",
"version": "0.3.0",
"description": "Simple XML to JavaScript object converter that uses Expat, a fast XML parser.",
"homepage": "https://github.com/Poetro/node-xml2js-expat",
"author": {
"name": "Peter Galiba (Poetro)",
"email": "[email protected]",
"url": "http://poetro.hu/"
},
"contributors": [
{
"name": "maqr",
"email": "[email protected]",
"url": "https://github.com/maqr/node-xml2js/"
}
],
"keywords": [
"xml",
"json",
"expat"
],
"directories": {
"lib": "./lib"
},
"dependencies": {
"node-expat": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "https://[email protected]/Poetro/node-xml2js-expat.git"
},
"main": "./lib/xml2js",
"devDependencies": {
"standard": "^10.0.2",
"tap": "^10.3.2"
},
"scripts": {
"pretest": "standard",
"test": "tap test/*.test.js"
}
}