{
  "name": "es-vm",
  "version": "1.4.1",
  "description": "A visual machine run in ES env like Node/Browser",
  "main": "index.js",
  "scripts": {
    "test": "mocha",
    "test-server": "webpack-dev-server --hot --no-info --host 0.0.0.0",
    "build:es5": "browserify index.js -t babelify -s ESVM --outfile dist/es-vm.es5.js",
    "build:es5-min": "browserify index.js -t babelify -g uglifyify -s ESVM --outfile dist/es-vm.es5.min.js",
    "build:es6": "browserify index.js -s ESVM --outfile dist/es-vm.es6.js",
    "build": "npm run build:es5 && npm run build:es5-min && npm run build:es6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lichaozhy/ESVM.git"
  },
  "keywords": [
    "VM",
    "ES6",
    "state-machine",
    "async",
    "sync",
    "GeneratorFunction",
    "scope"
  ],
  "author": "Chaos Lee",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lichaozhy/ESVM/issues"
  },
  "typings": "index.d.ts",
  "homepage": "https://github.com/lichaozhy/ESVM#readme",
  "devDependencies": {
    "babel-core": "^6.24.1",
    "babel-loader": "^6.4.1",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-runtime": "^6.23.0",
    "babelify": "^7.3.0",
    "browserify": "^14.3.0",
    "css-loader": "^0.28.0",
    "html-webpack-plugin": "^2.28.0",
    "mocha": "^3.2.0",
    "style-loader": "^0.16.1",
    "uglifyify": "^3.0.4",
    "webpack": "^2.4.1",
    "webpack-dev-server": "^2.4.2"
  }
}
