vscode-json-languageservice/package.json

54 строки
1.9 KiB
JSON
Исходник Обычный вид История

2016-06-24 16:35:04 +03:00
{
2016-11-03 17:50:00 +03:00
"name": "vscode-json-languageservice",
"version": "5.1.0",
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": {
2022-05-17 11:44:40 +03:00
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
2022-05-17 11:44:40 +03:00
"mocha": "^10.0.0",
2020-02-21 12:30:45 +03:00
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite.git#69acf52990b004240839ae19b4bec8fb01d50876"
2016-11-03 17:50:00 +03:00
},
"dependencies": {
"jsonc-parser": "^3.1.0",
2022-05-17 11:44:40 +03:00
"vscode-languageserver-textdocument": "^1.0.4",
"vscode-languageserver-types": "^3.17.1",
"vscode-nls": "^5.0.1",
2022-01-25 00:50:27 +03:00
"vscode-uri": "^3.0.3"
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",
"watch": "tsc -w -p ./src",
2020-04-11 21:50:08 +03:00
"pretest": "npm run compile",
"test": "mocha",
"posttest": "npm run lint",
2020-11-13 18:38:54 +03:00
"coverage": "npx nyc -r lcov npm run test",
2020-04-27 23:11:27 +03:00
"lint": "eslint src/**/*.ts",
"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",
2020-11-12 13:06:15 +03:00
"postversion": "git push && git push --tags",
"sample": "npm run compile && node ./lib/umd/example/sample.js"
2016-11-03 17:50:00 +03:00
}
2020-04-27 23:16:58 +03:00
}