UNPKG

xmlify

Version:

JavaScript/JSON/MongoDb/Mongoose to XML conversion

58 lines (57 loc) 1.39 kB
{ "name": "xmlify", "description": "JavaScript/JSON/MongoDb/Mongoose to XML conversion", "author": "Chris Veness", "version": "1.1.0", "license": "MIT", "main": "xmlify.js", "keywords": [ "JavaScript", "JSON", "Mongoose", "MongoDb", "XML", "conversion" ], "repository": { "type": "git", "url": "git://github.com/chrisveness/xmlify.git" }, "bugs": "https://github.com/chrisveness/xmlify/issues", "scripts": { "test": "mocha test/test.js", "lint": "eslint ." }, "dependencies": { "inflection": "^1.10.0", "xmldom": "^0.1.22" }, "devDependencies": { "eslint": "^3.1.1", "mocha": "^2.5.3", "npm-check-updates": "^2.7.1", "should": "^10.0.0" }, "eslintConfig": { "extends": "eslint:recommended", "env": { "node": true, "es6": true, "mocha": true }, "rules": { "comma-dangle": [ "error", "always-multiline" ], "curly": [ "error", "multi-line" ], "indent": [ "error", 4, { "SwitchCase": 1 } ], "key-spacing": [ "warn", { "align": "value" } ], "no-console": "warn", "no-redeclare": "warn", "no-shadow": "warn", "no-unused-vars": "warn", "no-var": "error", "object-curly-spacing": [ "error", "always" ], "quotes": [ "error", "single", "avoid-escape" ], "strict": [ "error", "global" ] } } }