2016-06-24 16:35:04 +03:00
|
|
|
{
|
2016-11-03 17:50:00 +03:00
|
|
|
"name": "vscode-json-languageservice",
|
2020-04-03 11:32:08 +03:00
|
|
|
"version": "3.5.2",
|
2016-11-03 17:50:00 +03:00
|
|
|
"description": "Language service for JSON",
|
2018-03-07 19:28:22 +03:00
|
|
|
"main": "./lib/umd/jsonLanguageService.js",
|
|
|
|
"typings": "./lib/umd/jsonLanguageService",
|
|
|
|
"module": "./lib/esm/jsonLanguageService.js",
|
2016-11-03 17:50:00 +03:00
|
|
|
"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": {
|
2020-02-21 12:30:45 +03:00
|
|
|
"@types/mocha": "^7.0.1",
|
2019-06-12 10:15:06 +03:00
|
|
|
"@types/node": "^10.12.21",
|
2020-02-21 12:30:45 +03:00
|
|
|
"mocha": "^7.0.1",
|
2020-04-11 21:50:08 +03:00
|
|
|
"nyc": "^15.0.1",
|
2020-02-21 12:30:45 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2020-01-22 17:41:08 +03:00
|
|
|
"tslint": "^6.0.0",
|
2020-02-21 12:30:45 +03:00
|
|
|
"typescript": "^3.8.2"
|
2016-11-03 17:50:00 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-02-21 12:30:45 +03:00
|
|
|
"jsonc-parser": "^2.2.1",
|
2020-02-21 12:36:45 +03:00
|
|
|
"vscode-languageserver-textdocument": "^1.0.1",
|
2020-02-21 12:30:45 +03:00
|
|
|
"vscode-languageserver-types": "^3.15.1",
|
2019-06-12 10:15:06 +03:00
|
|
|
"vscode-nls": "^4.1.1",
|
2019-12-17 14:55:08 +03:00
|
|
|
"vscode-uri": "^2.1.1"
|
2016-11-03 17:50:00 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2019-06-12 10:20:19 +03:00
|
|
|
"prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
|
2017-09-21 14:05:16 +03:00
|
|
|
"postpublish": "node ./build/post-publish.js",
|
2018-03-08 14:31:57 +03:00
|
|
|
"compile": "tsc -p ./src",
|
|
|
|
"compile-esm": "tsc -p ./src/tsconfig.esm.json",
|
|
|
|
"clean": "rimraf lib",
|
2019-06-12 10:20:19 +03:00
|
|
|
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
|
2016-11-25 16:49:43 +03:00
|
|
|
"watch": "tsc -w -p ./src",
|
2020-04-11 21:50:08 +03:00
|
|
|
"pretest": "npm run compile",
|
|
|
|
"test": "mocha",
|
|
|
|
"posttest": "npm run lint",
|
|
|
|
"coverage": "nyc -r lcov npm run test",
|
2017-11-13 14:51:36 +03:00
|
|
|
"lint": "tslint src/**/*.ts",
|
2019-11-04 18:37:44 +03:00
|
|
|
"install-types-next": "npm install vscode-languageserver-types@next -f -S && npm install vscode-languageserver-textdocument@next -f -S",
|
2018-03-05 18:27:41 +03:00
|
|
|
"preversion": "npm test",
|
|
|
|
"postversion": "git push && git push --tags"
|
2016-11-03 17:50:00 +03:00
|
|
|
}
|
2020-04-11 21:50:08 +03:00
|
|
|
}
|