{
  "name": "kevoree-kevscript",
  "version": "5.0.9",
  "description": "Kevoree KevScript module - contains parser, interpreter and grammar",
  "main": "./lib/KevScript.js",
  "bin": {
    "k2m": "./bin/k2m.js",
    "kevs2model": "./bin/kevs2model.js",
    "model2kevs": "./bin/model2kevs.js"
  },
  "scripts": {
    "build": "webpack -p --progress",
    "serve": "webpack-dev-server --open",
    "prepublish": "npm run test && npm run build",
    "test": "npm run lint && mocha --recursive test/server/spec",
    "lint": "eslint lib test"
  },
  "browser": {
    "fs": false,
    "mkdirp": false
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kevoree/kevoree-js-kevscript.git"
  },
  "keywords": [
    "kevoree",
    "parser",
    "grammar",
    "interpreter",
    "kevscript"
  ],
  "author": "Maxime Tricoire <max.tricoire@gmail.com>",
  "license": "LGPL-3.0",
  "bugs": {
    "url": "https://github.com/kevoree/kevoree-js-kevscript/issues"
  },
  "homepage": "https://github.com/kevoree/kevoree-js-kevscript",
  "dependencies": {
    "chalk": "^1.1.3",
    "kevoree-const": "^2.0.1",
    "kevoree-library": "^5.0.13",
    "kevoree-logger": "^1.0.2",
    "kevoree-registry-client": "^3.0.1",
    "kevoree-validator": "^0.1.20",
    "mkdirp": "^0.5.1",
    "optimist": "^0.6.1",
    "semver": "^5.3.0",
    "tiny-conf": "^1.1.0",
    "tiny-conf-plugin-argv": "^1.1.0",
    "tiny-conf-plugin-file": "^1.1.2",
    "waxeye": "^0.8.1",
    "xtend": "^4.0.1"
  },
  "devDependencies": {
    "babel-core": "^6.25.0",
    "babel-loader": "^7.1.1",
    "babel-preset-env": "^1.6.0",
    "eslint": "^4.3.0",
    "eslint-config-kevoree": "^1.0.1",
    "expect": "^1.20.2",
    "express": "^4.14.0",
    "mocha": "^3.4.2",
    "rimraf": "^2.6.1",
    "sinon": "^2.1.0",
    "webpack": "^3.4.1",
    "webpack-dev-server": "^2.5.1"
  },
  "eslintConfig": {
    "env": {
      "node": true
    },
    "extends": [
      "eslint:recommended"
    ],
    "globals": {
      "Promise": true
    },
    "rules": {
      "semi": [
        "error",
        "always"
      ]
    }
  }
}
