massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-json-languageservice / package.json
1 {
2   "name": "vscode-json-languageservice",
3   "version": "4.1.0",
4   "description": "Language service for JSON",
5   "main": "./lib/umd/jsonLanguageService.js",
6   "typings": "./lib/umd/jsonLanguageService",
7   "module": "./lib/esm/jsonLanguageService.js",
8   "author": "Microsoft Corporation",
9   "repository": {
10     "type": "git",
11     "url": "https://github.com/Microsoft/vscode-json-languageservice"
12   },
13   "license": "MIT",
14   "bugs": {
15     "url": "https://github.com/Microsoft/vscode-json-languageservice"
16   },
17   "engines": {
18     "npm": ">=7.0.0"
19   },
20   "devDependencies": {
21     "@types/minimatch": "^3.0.3",
22     "@types/mocha": "^8.2.0",
23     "@types/node": "^10.12.21",
24     "@typescript-eslint/eslint-plugin": "^4.14.0",
25     "@typescript-eslint/parser": "^4.14.0",
26     "eslint": "^7.18.0",
27     "mocha": "^8.2.1",
28     "rimraf": "^3.0.2",
29     "typescript": "^4.1.3"
30   },
31   "dependencies": {
32     "jsonc-parser": "^3.0.0",
33     "minimatch": "^3.0.4",
34     "vscode-languageserver-textdocument": "^1.0.1",
35     "vscode-languageserver-types": "^3.16.0",
36     "vscode-nls": "^5.0.0",
37     "vscode-uri": "^3.0.2"
38   },
39   "scripts": {
40     "prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
41     "postpublish": "node ./build/post-publish.js",
42     "compile": "tsc -p ./src",
43     "compile-esm": "tsc -p ./src/tsconfig.esm.json",
44     "clean": "rimraf lib",
45     "remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
46     "watch": "tsc -w -p ./src",
47     "pretest": "npm run compile",
48     "test": "mocha",
49     "posttest": "npm run lint",
50     "coverage": "npx nyc -r lcov npm run test",
51     "lint": "eslint src/**/*.ts",
52     "install-types-next": "npm install vscode-languageserver-types@next -f -S && npm install vscode-languageserver-textdocument@next -f -S",
53     "preversion": "npm test",
54     "postversion": "git push && git push --tags",
55     "sample": "npm run compile && node ./lib/umd/example/sample.js"
56   }
57 }