Requirements

This commit is contained in:
2019-06-25 22:44:15 +05:30
parent 869be88680
commit f18556b728
2 changed files with 49 additions and 0 deletions

27
package-lock.json generated Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "xml-servicefile-parser",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
"xml2js": {
"version": "0.4.19",
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz",
"integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==",
"requires": {
"sax": ">=0.6.0",
"xmlbuilder": "~9.0.1"
}
},
"xmlbuilder": {
"version": "9.0.7",
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz",
"integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0="
}
}
}

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "xml-servicefile-parser",
"version": "1.0.0",
"description": "Noob script to create scripts onn servicefile.xml",
"main": "index.js",
"scripts": {
"test": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisvrose/xml-servicefile-parser.git"
},
"author": "Christopher Rose",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisvrose/xml-servicefile-parser/issues"
},
"homepage": "https://github.com/chrisvrose/xml-servicefile-parser#readme",
"dependencies": {
"xml2js": "^0.4.19"
}
}