2016-06-24 16:35:04 +03:00
|
|
|
{
|
|
|
|
"name": "vscode-json-languageservice",
|
2016-10-17 00:44:54 +03:00
|
|
|
"version": "1.1.8-next.2",
|
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": {
|
2016-09-07 16:59:01 +03:00
|
|
|
"vscode-languageserver-types": "^1.0.3",
|
2016-06-24 16:35:04 +03:00
|
|
|
"vscode-nls": "^1.0.4",
|
2016-09-05 16:01:43 +03:00
|
|
|
"jsonc-parser": "^0.2.3",
|
2016-10-17 00:16:53 +03:00
|
|
|
"vscode-uri": "^1.0.0"
|
2016-06-24 16:35:04 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"prepublish": "gulp compile",
|
|
|
|
"compile": "gulp compile",
|
|
|
|
"watch": "gulp watch",
|
|
|
|
"test": "gulp compile && mocha"
|
|
|
|
}
|
2016-06-30 21:25:57 +03:00
|
|
|
}
|