-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 930 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
43
44
45
{
"name": "x2j-cli",
"version": "1.0.4",
"description": "Node.js command line script to convert xml input into json output (can be piped easily)",
"keywords": [
"xml",
"json",
"convert",
"xml to json",
"xml2json",
"xml-json",
"xml-to-json",
"xml 2 json",
"xml to js",
"xml to javascript"
],
"engines": {
"node": ">=4"
},
"main": "index.js",
"bin": {
"x2j": "./index.js",
"xml2json": "./index.js"
},
"preferGlobal": true,
"scripts": {
"test": "tap test/**.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/x2j-cli.git"
},
"author": "Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmammino/x2j-cli/issues"
},
"homepage": "https://github.com/lmammino/x2j-cli#readme",
"dependencies": {
"xml2js": "^0.4.17"
},
"devDependencies": {
"tap": "^8.0.1"
}
}