fmtconv
Version:
Convert between JSON and YAML format files.
46 lines (45 loc) • 1.08 kB
JSON
{
"name": "fmtconv",
"version": "1.1.0",
"description": "Convert between JSON and YAML format files.",
"main": "index.js",
"bin": {
"fmtconv": "./bin/fmtconv.js"
},
"engines": {
"node": ">=12.22"
},
"scripts": {
"lint": "standard",
"test": "nyc --reporter=lcov --reporter=text ava",
"test-coveralls": "node ./bin/nyc && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose",
"coverage": "nyc report --reporter=lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WindomZ/fmtconv.git"
},
"keywords": [
"format",
"converter",
"convert",
"JSON",
"YAML"
],
"author": "WindomZ <git.windomz@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/WindomZ/fmtconv/issues"
},
"homepage": "https://github.com/WindomZ/fmtconv#readme",
"dependencies": {
"commander": "^9.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"ava": "^4.0.1",
"coveralls": "^3.1.1",
"nyc": "^15.1.0",
"standard": "^16.0.4"
}
}