2016-06-24 16:35:04 +03:00
|
|
|
{
|
2016-11-03 17:50:00 +03:00
|
|
|
"name": "vscode-json-languageservice",
|
2018-03-05 18:29:18 +03:00
|
|
|
"version": "3.0.8",
|
2016-11-03 17:50:00 +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": {
|
2017-10-11 22:31:57 +03:00
|
|
|
"@types/mocha": "^2.2.33",
|
2017-11-13 14:51:36 +03:00
|
|
|
"@types/node": "^7.0.43",
|
2017-10-13 11:33:51 +03:00
|
|
|
"mocha": "^2.4.5",
|
2017-11-13 14:51:36 +03:00
|
|
|
"tslint": "^5.8.0",
|
2018-03-05 18:27:41 +03:00
|
|
|
"typescript": "^2.7.2"
|
2016-11-03 17:50:00 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-03-05 18:27:41 +03:00
|
|
|
"jsonc-parser": "^1.0.2",
|
|
|
|
"vscode-languageserver-types": "^3.6.0",
|
|
|
|
"vscode-nls": "^3.2.1",
|
2017-08-23 14:42:17 +03:00
|
|
|
"vscode-uri": "^1.0.1"
|
2016-11-03 17:50:00 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-09-15 15:10:54 +03:00
|
|
|
"prepublish": "npm run test",
|
2017-09-21 14:05:16 +03:00
|
|
|
"postpublish": "node ./build/post-publish.js",
|
2016-11-25 16:49:43 +03:00
|
|
|
"compile": "tsc -p ./src",
|
|
|
|
"watch": "tsc -w -p ./src",
|
2017-11-13 14:51:36 +03:00
|
|
|
"test": "npm run compile && mocha && npm run lint",
|
|
|
|
"lint": "tslint src/**/*.ts",
|
2018-03-05 18:27:41 +03:00
|
|
|
"install-types-next": "npm install vscode-languageserver-types@next -f -S",
|
|
|
|
"preversion": "npm test",
|
|
|
|
"postversion": "git push && git push --tags"
|
2016-11-03 17:50:00 +03:00
|
|
|
}
|
2016-06-30 21:25:57 +03:00
|
|
|
}
|