UNPKG

1.39 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": "1.1.0",
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 "bugs": {
18 "url": "https://github.com/rafeca/prettyjson/issues"
19 },
20 "main": "./lib/prettyjson",
21 "scripts": {
22 "test": "npm run jshint && mocha --reporter spec",
23 "testwin": "node ./node_modules/mocha/bin/mocha --reporter spec",
24 "jshint": "jshint lib/*.js",
25 "coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
26 "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
27 "changelog": "git log $(git describe --tags --abbrev=0)..HEAD --pretty='* %s' --first-parent"
28 },
29 "bin": {
30 "prettyjson": "./bin/prettyjson"
31 },
32 "engines": {
33 "node": ">= 0.10.0 < 0.12.0"
34 },
35 "dependencies": {
36 "colors": "0.6.2",
37 "minimist": "0.0.8"
38 },
39 "devDependencies": {
40 "mocha": "^1.18.2",
41 "should": "^3.1.4",
42 "jshint": "^2.4.4",
43 "getversion": "~0.1.1",
44 "istanbul": "~0.2.4",
45 "coveralls": "^2.10.0",
46 "mocha-lcov-reporter": "0.0.1"
47 }
48}