{
  "name": "snabbdom-pragma",
  "version": "2.8.0",
  "description": "'NotReact.createElement' pragma although for snabbdom",
  "keywords": [
    "snabbdom",
    "pragma",
    "jsx",
    "createElement",
    "Bublé",
    "Buble",
    "Babel",
    "Traceur"
  ],
  "author": "Swizz <gerodel.quentin@gmail.com>",
  "license": "MIT",
  "repository": "git@github.com:Swizz/snabbdom-pragma.git",
  "main": "dist/index.js",
  "module": "dist/index.es6.js",
  "types": "snabbdom-pragma.d.ts",
  "devDependencies": {
    "ava": "^0.25.0",
    "babel-core": "^6.24.0",
    "babel-plugin-transform-react-jsx": "^6.8.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-stage-2": "^6.24.1",
    "benchmark": "^2.1.4",
    "buble": "^0.17.3",
    "eslint-config-xo-swizz": "^0.11.0",
    "rimraf": "^2.6.1",
    "rollup": "^0.41.3",
    "simple-git": "^1.92.0",
    "snabbdom": "^0.6.7",
    "traceur": "^0.0.111",
    "typescript": "^2.3.2",
    "xo": "^0.18.2"
  },
  "dependencies": {
    "extend": "^3.0.0"
  },
  "scripts": {
    "lint": "./node_modules/.bin/xo",
    "test:prebuild": "ava --match \"trans -*\" --match \"src -*\" --match \"utils -*\"",
    "test:postbuild": "ava --match \"dist -*\"",
    "transpile": "./node_modules/.bin/buble -i src/ -o lib/ --no modules --objectAssign fn.assign",
    "modules": "rollup -i lib/index.js -o dist/index.js -f cjs && rollup -i lib/index.js -o dist/index.es6.js -f es",
    "clean": "./node_modules/.bin/rimraf 'lib/'",
    "build": "npm run transpile && npm run modules && npm run clean",
    "make": "npm run lint && npm run test:prebuild && npm run build && npm run test:postbuild",
    "perf:all": "node perf/build-branches && node perf/run",
    "perf": "node perf/run"
  },
  "ava": {
    "files": [
      "test/*-test.js"
    ],
    "require": [
      "babel-register"
    ]
  },
  "xo": {
    "semicolon": false,
    "space": true,
    "extends": "xo-swizz",
    "rules": {
      "import/no-dynamic-require": "off",
      "capitalized-comments": "off"
    },
    "ignores": [
      "test/**/transform-*.js"
    ]
  },
  "babel": {
    "presets": [
      "es2015",
      "stage-2"
    ]
  }
}
