UNPKG

1.27 kBJSONView Raw
1{
2 "author": "Rafael de Oleza <rafeca@gmail.com> (https://github.com/rafeca)",
3 "name": "prettyjson",
4 "description": "Package for formatting JSON data in a coloured YAML-style, perfect for CLI output",
5 "version": "0.12.1",
6 "homepage": "http://rafeca.com/prettyjson",
7 "keywords": [
8 "json",
9 "cli",
10 "formatting",
11 "colors"
12 ],
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/rafeca/prettyjson.git"
16 },
17 "main": "./lib/prettyjson",
18 "scripts": {
19 "test": "mocha --reporter spec",
20 "testwin": "node ./node_modules/mocha/bin/mocha --reporter spec",
21 "jshint": "jshint lib/*.js",
22 "coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
23 "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
24 "changelog": "git log $(git describe --tags --abbrev=0)..HEAD --pretty='* %s' --first-parent"
25 },
26 "bin": {
27 "prettyjson": "./bin/prettyjson"
28 },
29 "engines": {
30 "node": ">= 0.10.0 < 0.12.0"
31 },
32 "dependencies": {
33 "colors": "0.6.2"
34 },
35 "devDependencies": {
36 "mocha": "1.8.1",
37 "should": "1.2.2",
38 "jshint": "~2.3.0",
39 "getversion": "~0.1.1",
40 "istanbul": "~0.2.4",
41 "coveralls": "~2.7.0",
42 "mocha-lcov-reporter": "0.0.1"
43 }
44}