{
  "name": "ultradom",
  "description": "Minimal view layer for building declarative web user interfaces.",
  "version": "4.0.2",
  "main": "ultraDOM.js",
  "module": "ultraDOM.m.js",
  "license": "MIT",
  "repository": "jorgebucaran/ultraDOM",
  "types": "ultraDOM.d.ts",
  "files": [
    "ultraDOM.m.js",
    "ultraDOM.d.ts",
    "ultraDOM.js",
    "ultraDOM.js.map"
  ],
  "author": "Jorge Bucaran",
  "keywords": [
    "ultraDOM",
    "frontend",
    "virtual dom",
    "vdom"
  ],
  "scripts": {
    "test": "jest --coverage --no-cache",
    "build": "npm run bundle && npm run minify",
    "bundle": "rollup -i ultraDOM.m.js -o ultraDOM.js -m -f umd -n ultraDOM",
    "minify": "uglifyjs ultraDOM.js -o ultraDOM.js -mc pure_funcs=['Object.defineProperty'] --source-map includeSources,url=ultraDOM.js.map",
    "prepare": "npm run build",
    "release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
  },
  "babel": {
    "presets": "env"
  },
  "devDependencies": {
    "babel-env": "2.4.1",
    "jest": "^23.1.0",
    "rollup": "^0.61.2",
    "uglify-js": "^3.4.1"
  }
}
