{
  "name": "@ajces/idiom",
  "description": "Derivative of hyperapp adding a few opinionated pieces for my prefered dev workflow, you probably should be using [hyperapp](https://github.com/hyperapp/hyperapp)",
  "version": "1.0.5",
  "main": "dist/idiom.js",
  "jsnext:main": "src/index.js",
  "module": "src/index.js",
  "license": "MIT",
  "repository": "git://github.com/ajces/idiom.git",
  "files": [
    "src",
    "dist"
  ],
  "author": "Andy Johnson <all credit due to Jorge Bucaran for hyperapp>",
  "keywords": [
    "hyperapp",
    "react",
    "jsx",
    "elm",
    "virtual dom",
    "vdom",
    "hyperx",
    "hyperscript"
  ],
  "scripts": {
    "test": "jest --coverage --no-cache",
    "build": "npm run bundle && npm run minify && cp idiom.js.flow dist/",
    "bundle": "rollup -i src/index.js -o dist/idiom.js -m -f umd -n idiom",
    "minify": "uglifyjs dist/idiom.js -o dist/idiom.js --mangle --compress warnings=false --pure-funcs=Object.defineProperty -p relative --source-map dist/idiom.js.map",
    "prepublish": "npm run build",
    "format": "prettier --semi false --write 'src/**/*.js'",
    "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": "es2015"
  },
  "devDependencies": {
    "babel-preset-es2015": "^6.24.1",
    "flow-bin": "^0.53.1",
    "jest": "^20.0.4",
    "prettier": "~1.5.3",
    "rollup": "^0.45.2",
    "uglify-js": "^2.7.5"
  }
}
