{
    "private": true,
    "name": "@hpcc-js/demo-h3",
    "main": "dist/index.js",
    "module": "dist/index.es6",
    "unpkg": "dist/index.min.js",
    "jsdelivr": "dist/index.min.js",
    "types": "types/index.d.ts",
    "typesVersions": {
        "<3.8": {
            "*": [
                "types-3.4/index.d.ts"
            ]
        }
    },
    "scripts": {
        "clean": "rimraf lib* types dist *.tsbuildinfo",
        "compile-es6": "tsc --module es6 --outDir ./lib-es6",
        "compile-es6-watch": "npm run compile-es6 -- -w",
        "compile-umd": "tsc --module umd --outDir ./lib-umd",
        "compile-umd-watch": "npm run compile-umd -- -w",
        "bundle": "rollup -c",
        "bundle-watch": "npm run bundle -- -w",
        "minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o res/index.min.js",
        "build": "npm run compile-es6 && npm run bundle && npm run minimize",
        "watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
        "update": "npx npm-check-updates -u -t minor"
    },
    "dependencies": {
        "@hpcc-js/api": "^2",
        "@hpcc-js/common": "^2",
        "@hpcc-js/comms": "^2",
        "@hpcc-js/dgrid": "^2",
        "@hpcc-js/dgrid-shim": "^2",
        "@hpcc-js/graph": "^2",
        "@hpcc-js/layout": "^2",
        "@hpcc-js/loader": "^2",
        "@hpcc-js/map": "^2",
        "@hpcc-js/map-deck": "^2",
        "@hpcc-js/other": "^2",
        "@hpcc-js/phosphor": "^2",
        "@hpcc-js/util": "^2",
        "d3-fetch": "^1",
        "d3-scale": "^1",
        "es6-promise": "4.2.8",
        "h3-js": "3.7.2",
        "tslib": "2.3.1"
    },
    "devDependencies": {
        "rimraf": "2.7.1"
    }
}