{
    "name": "jepy",
    "version": "3.0.0",
    "description": "Tiny, expandable and simple to use composition based JS template engine",
    "main": "jepy.jsm",
    "keywords": [
        "front-end",
        "template",
        "templates",
        "templating",
        "composition"
    ],
    "type": "module",
    "scripts": {
        "fix:js": "eslint --fix ./src/",
        "fix:format": "prettier --write .",
        "lint": "eslint ./src/",
        "test": "mocha --reporter spec",
        "benchmark": "node ./benchmark/block-render.js",
        "minify": "terser --config-file .terser.json ./dist/jepy.js -o ./dist/jepy.min.js",
        "prebuild": "npm run lint",
        "build": "npm run test && rollup --config rollup.config.js && npm run minify",
        "postbuild": "cp ./dist/jepy.min.js ./examples/jepy.min.js"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/jepyio/jepy.git"
    },
    "author": "Sandor Huszagh <sandor@jepy.io>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/jepyio/jepy",
        "email": "sandor@jepy.io"
    },
    "homepage": "https://github.com/jepyio/jepy",
    "devDependencies": {
        "chai": "^4.3.7",
        "eslint": "^8.28.0",
        "eslint-config-prettier": "^8.5.0",
        "eslint-plugin-import": "^2.26.0",
        "mitata": "^1.0.34",
        "mocha": "^10.1.0",
        "prettier": "2.8.0",
        "rollup": "^3.5.0",
        "terser": "^5.16.0"
    }
}
