{
    "name": "bogosort",
    "version": "1.0.1",
    "author": "Daniel K. <daniel@suitsoft.eu>",
    "description": "The well known Bogosort sorting algorithm for JavaScript",
    "scripts": {
        "start": "node ./example.js",
        "test": "mocha",
        "build": "uglifyjs bogosort.js -c -w --source-map bogosort.js.map -o bogosort.min.js"
    },
    "main": "./bogosort.js",
    "repository": {
        "type": "git",
        "url": "https://github.com/dak0rn/bogosort.git"
    },
    "keywords": [
        "algorithms",
        "bogosort",
        "monkeysort",
        "stupidsort",
        "sort"
    ],
    "license": "Apache-2.0",
    "engines": {
        "node": ">=0.10.21"
    },
    "devDependencies": {
        "chai": "^3.4.1",
        "mocha": "^2.3.4",
        "uglify-js": "^2.6.1"
    }
}
