{
    "name": "sorted-array-type",
    "description": "Array with sorted insertion and optimized search methods.",
    "version": "1.3.0",
    "keywords": [
        "sorted",
        "sort",
        "array",
        "list",
        "collection",
        "type",
        "data",
        "structure"
    ],
    "main": "dist/src/index.js",
    "types": "dist/src/index.d.ts",
    "files": [
        "index.js",
        "LICENSE",
        "readme.md",
        "dist/src/*"
    ],
    "license": "Zlib",
    "homepage": "https://github.com/pineapplemachine/sorted-array-type-js",
    "bugs": "https://github.com/pineapplemachine/sorted-array-type-js/issues",
    "repositories": [
        {
            "type": "git",
            "url": "https://github.com/pineapplemachine/sorted-array-type-js.git"
        }
    ],
    "contributors": [
        {
            "name": "Sophie Kirschner",
            "email": "sophiek@pineapplemachine.com"
        }
    ],
    "devDependencies": {
        "@types/node": "^20.8.9",
        "array.prototype.flat": "1.2.1",
        "array.prototype.flatmap": "1.2.1",
        "canary-test": "1.1.2",
        "nyc": "15.1.0",
        "source-map-support": "^0.5.21",
        "typedoc": "0.25.2",
        "typescript": "5.2.2"
    },
    "scripts": {
        "test": "npm rum build && node dist/test/test.js",
        "test-commonjs": "npm rum build && node test/test-commonjs.js",
        "build": "npx tsc",
        "typedoc": "npx typedoc",
        "coverage": "npx nyc npm run test",
        "coverage-lcov": "npx nyc --reporter lcov npm run test",
        "coverage-report": "npx nyc report --reporter html",
        "prepublish": "npm run test && npm run test-commonjs"
    }
}
