json2yaml.js/package.json

36 lines
749 B
JSON
Raw Normal View History

2012-01-30 20:18:18 +00:00
{
2013-07-28 03:51:29 +00:00
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.com)",
2012-01-30 20:18:18 +00:00
"name": "json2yaml",
"description": "A commandline utility to convert JSON to YAML / YML",
2016-04-19 04:53:59 +00:00
"keywords": [
"yml",
"yaml",
"json",
"cli",
"util"
],
2018-09-22 19:55:59 +00:00
"version": "1.2.0",
"license": "Apache-2.0",
2012-01-30 20:18:18 +00:00
"main": "index.js",
2013-07-28 03:51:29 +00:00
"repository": {
"type": "git",
"url": "https://github.com/coolaj86/json2yaml.git"
},
2012-01-30 20:18:18 +00:00
"bin": {
"json2yaml": "./cli.js",
2013-07-28 03:51:29 +00:00
"jsontoyaml": "./cli.js",
"jsontoyml": "./cli.js",
2012-01-30 20:18:18 +00:00
"json2yml": "./cli.js"
},
"engines": {
"node": ">= 0.2.0"
},
2013-07-28 03:51:29 +00:00
"test": "echo 'error no test'; exit 1",
2012-01-30 20:18:18 +00:00
"dependencies": {
2016-04-28 13:50:01 +00:00
"remedial": "1.x",
"wordwrap": "^1.0.0"
2012-01-30 20:18:18 +00:00
},
"devDependencies": {},
"preferGlobal": true
}