-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 940 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 940 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
{
"name": "xml2json-canonical",
"version": "0.1.2",
"description": "XML to JSON converter preserving everything from the original XML in a canonical JSON representation easy to work with - Node.js module and CLI tool",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"bin": {
"xml2json": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielduarte/xml2json-canonical.git"
},
"keywords": [
"xml2json",
"xml",
"json",
"conversion",
"canonical",
"cli",
"tool"
],
"author": "Daniel Duarte <danieldd.ar@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielduarte/xml2json-canonical/issues"
},
"homepage": "https://github.com/danielduarte/xml2json-canonical#readme",
"dependencies": {
"sax": "^1.2.4"
},
"files": [
"index.js",
"cli.js"
],
"devDependencies": {
"expect": "^26.0.1"
}
}