forked from microsoft/vscode-json-languageservice
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@redocly/vscode-json-languageservice",
"version": "3.4.7",
"description": "Language service for JSON",
"main": "./lib/umd/jsonLanguageService.js",
"typings": "./lib/umd/jsonLanguageService",
"module": "./lib/esm/jsonLanguageService.js",
"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": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.21",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"dependencies": {
"jsonc-parser": "^2.2.0",
"vscode-languageserver-textdocument": "^1.0.0-next.4",
"vscode-languageserver-types": "^3.15.0-next.6",
"vscode-nls": "^4.1.1",
"vscode-uri": "^2.1.1"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
"postpublish": "node ./build/post-publish.js",
"compile": "tsc -p ./src",
"compile-esm": "tsc -p ./src/tsconfig.esm.json",
"clean": "rimraf lib",
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
"watch": "tsc -w -p ./src",
"test": "npm run compile && mocha && npm run lint",
"lint": "tslint src/**/*.ts",
"install-types-next": "npm install vscode-languageserver-types@next -f -S && npm install vscode-languageserver-textdocument@next -f -S",
"preversion": "npm test",
"postversion": "git push && git push --tags"
}
}