{
  "name": "jsonabc",
  "version": "2.3.1",
  "license": "MIT",
  "description": "Sorts JSON object alphabetically. It supports nested objects, arrays and collections. Works offline and beautifies JSON object too.",
  "browser": "dist/jsonabc.js",
  "main": "index.js",
  "homepage": "http://novicelab.org/jsonabc",
  "repository": "https://github.com/ShivrajRath/jsonabc",
  "bugs": "https://github.com/ShivrajRath/jsonabc/issues",
  "author": "Shivraj Rath",
  "contributors": [
    "Shivraj Rath",
    "Nick Freear"
  ],
  "devDependencies": {
    "browserify": "^16.2.2",
    "chai": "^4.1.2",
    "mocha": "^5.2.0",
    "semistandard": "^12.0.1"
  },
  "semistandard": {
    "globals": ["describe", "it", "beforeEach"],
    "ignore": [
      "**/dist/"
    ]
  },
  "scripts": {
    "build": "browserify --no-bf -r ./index.js:jsonabc -o dist/jsonabc.js",
    "test": "mocha && semistandard",
    "mocha": "mocha",
    "fix": "semistandard --fix"
  },
  "keywords": [
    "sorting",
    "beautify",
    "alphabet",
    "sorts json",
    "json",
    "utility"
  ]
}