{
	"name": "lua-features",
	"version": "0.0.1",
	"description": "Static analysis with extra features for lua",
	"main": "./lib/index.js",
	"bin": "./lib/cli.js",
	"files": [
		"/lib"
	],
	"scripts": {
		"test": "jest",
		"flow": "flow",
		"build": "babel src/ -d lib/",
		"lint": "eslint src/**.js",
		"prepublish": "npm run build && flow-copy-source src/ lib/",
		"preversion": "npm test"
	},
	"keywords": [
		"lua",
		"typed",
		"type checking",
		"static analysis",
		"const"
	],
	"author": "Yan Couto",
	"license": "MIT",
	"repository": "github:yancouto/lua-features",
	"devDependencies": {
		"@babel/cli": "^7.2.3",
		"@babel/core": "^7.2.2",
		"@babel/node": "^7.2.2",
		"@babel/plugin-proposal-class-properties": "^7.2.3",
		"@babel/preset-env": "^7.2.3",
		"@babel/preset-flow": "^7.0.0",
		"babel-core": "^7.0.0-bridge.0",
		"babel-eslint": "^10.0.1",
		"babel-jest": "^23.4.2",
		"eslint": "^5.12.0",
		"eslint-config-prettier": "^3.3.0",
		"eslint-plugin-flowtype": "^3.2.1",
		"eslint-plugin-prettier": "^3.0.1",
		"flow-bin": ">=0.90.0",
		"flow-copy-source": "^2.0.2",
		"jest": "^23.6.0",
		"prettier": "^1.15.3"
	},
	"dependencies": {
		"nullthrows": "^1.1.1",
		"yargs": "^12.0.5"
	}
}
