2016-06-24 16:35:04 +03:00
|
|
|
{
|
|
|
|
"name": "vscode-json-languageservice",
|
2016-06-27 23:36:07 +03:00
|
|
|
"version": "1.1.1",
|
2016-06-24 16:35:04 +03:00
|
|
|
"description": "Language service for JSON",
|
|
|
|
"main": "./lib/jsonLanguageService.js",
|
|
|
|
"typings": "./lib/jsonLanguageService",
|
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/vscode-json-languageservice"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Microsoft/vscode-json-languageservice"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"mocha": "^2.4.5",
|
|
|
|
"typescript": "^1.8.9",
|
|
|
|
"gulp": "^3.9.1",
|
|
|
|
"gulp-tsb": "^1.10.4",
|
|
|
|
"merge-stream": "^1.0.0",
|
|
|
|
"object-assign": "^4.1.0",
|
2016-06-26 13:44:16 +03:00
|
|
|
"rimraf": "^2.5.2"
|
2016-06-24 16:35:04 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"vscode-languageserver-types": "^1.0.1",
|
|
|
|
"vscode-nls": "^1.0.4",
|
2016-06-26 13:44:16 +03:00
|
|
|
"jsonc-parser": "^0.2.3"
|
2016-06-24 16:35:04 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"prepublish": "gulp compile",
|
|
|
|
"compile": "gulp compile",
|
|
|
|
"watch": "gulp watch",
|
|
|
|
"test": "gulp compile && mocha"
|
|
|
|
}
|
|
|
|
}
|