{
	"name": "vscode-jsonrpc",
	"description": "A json rpc implementation over streams",
	"version": "2.3.0",
	"author": "Microsoft Corporation",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "https://github.com/Microsoft/vscode-languageserver-node.git"
	},
	"bugs": {
		"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
	},
	"main": "./lib/main.js",
	"typings": "./lib/main",
	"devDependencies": {
		"mocha": "^2.4.5",
		"typescript": "^1.8.9"
	},
	"scripts": {
		"prepublish": "tsc -p ./src",
		"compile": "tsc -p ./src",
		"watch": "tsc -w -p ./src",
		"test": "mocha"
	}
}