46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"author": "Rafael de Oleza <rafeca@gmail.com> (https://github.com/rafeca)",
|
|
"name": "prettyjson",
|
|
"description": "Package for formatting JSON data in a coloured YAML-style, perfect for CLI output",
|
|
"version": "0.13.0",
|
|
"homepage": "http://rafeca.com/prettyjson",
|
|
"keywords": [
|
|
"json",
|
|
"cli",
|
|
"formatting",
|
|
"colors"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/rafeca/prettyjson.git"
|
|
},
|
|
"main": "./lib/prettyjson",
|
|
"scripts": {
|
|
"test": "mocha --reporter spec",
|
|
"testwin": "node ./node_modules/mocha/bin/mocha --reporter spec",
|
|
"jshint": "jshint lib/*.js",
|
|
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
|
|
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
|
|
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --pretty='* %s' --first-parent"
|
|
},
|
|
"bin": {
|
|
"prettyjson": "./bin/prettyjson"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.10.0 < 0.12.0"
|
|
},
|
|
"dependencies": {
|
|
"colors": "0.6.2",
|
|
"minimist": "0.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "1.8.1",
|
|
"should": "1.2.2",
|
|
"jshint": "~2.3.0",
|
|
"getversion": "~0.1.1",
|
|
"istanbul": "~0.2.4",
|
|
"coveralls": "~2.7.0",
|
|
"mocha-lcov-reporter": "0.0.1"
|
|
}
|
|
}
|