lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 108 lines 3.4 kB view raw
1{ 2 "name": "yaml-language-server", 3 "description": "YAML language server", 4 "version": "1.14.0", 5 "author": "Gorkem Ercan (Red Hat)", 6 "license": "MIT", 7 "contributors": [ 8 { 9 "name": "Joshua Pinkney", 10 "email": "joshpinkney@gmail.com" 11 }, 12 { 13 "name": "Yevhen Vydolob", 14 "email": "yvydolob@redhat.com" 15 }, 16 { 17 "name": "Google LLC" 18 } 19 ], 20 "bin": { 21 "yaml-language-server": "./bin/yaml-language-server" 22 }, 23 "main": "./out/server/src/index.js", 24 "keywords": [ 25 "yaml", 26 "LSP" 27 ], 28 "repository": { 29 "type": "git", 30 "url": "https://github.com/redhat-developer/yaml-language-server.git" 31 }, 32 "optionalDependencies": { 33 "prettier": "2.8.7" 34 }, 35 "dependencies": { 36 "ajv": "^8.11.0", 37 "lodash": "4.17.21", 38 "request-light": "^0.5.7", 39 "vscode-json-languageservice": "4.1.8", 40 "vscode-languageserver": "^7.0.0", 41 "vscode-languageserver-textdocument": "^1.0.1", 42 "vscode-languageserver-types": "^3.16.0", 43 "vscode-nls": "^5.0.0", 44 "vscode-uri": "^3.0.2", 45 "yaml": "2.2.2" 46 }, 47 "devDependencies": { 48 "@microsoft/eslint-formatter-sarif": "3.0.0", 49 "@types/chai": "^4.2.12", 50 "@types/mocha": "8.2.2", 51 "@types/node": "16.x", 52 "@types/prettier": "2.7.2", 53 "@types/sinon": "^9.0.5", 54 "@types/sinon-chai": "^3.2.5", 55 "@typescript-eslint/eslint-plugin": "^5.38.0", 56 "@typescript-eslint/parser": "^5.38.0", 57 "chai": "^4.2.0", 58 "coveralls": "3.1.1", 59 "eslint": "^8.24.0", 60 "eslint-config-prettier": "^8.5.0", 61 "eslint-plugin-import": "^2.26.0", 62 "eslint-plugin-prettier": "^4.2.1", 63 "http-proxy-agent": "^5.0.0", 64 "https-proxy-agent": "^5.0.0", 65 "mocha": "9.2.2", 66 "mocha-lcov-reporter": "^1.3.0", 67 "nyc": "^15.1.0", 68 "rimraf": "^3.0.2", 69 "sinon": "^9.0.3", 70 "sinon-chai": "^3.5.0", 71 "source-map-support": "^0.5.19", 72 "ts-node": "^10.0.0", 73 "typescript": "^4.8.3" 74 }, 75 "scripts": { 76 "clean": "rimraf out/server && rimraf lib", 77 "compile": "tsc -p .", 78 "watch": "tsc --watch -p .", 79 "test": "mocha --require ts-node/register --timeout 5000 --ui bdd ./test/*.test.ts", 80 "coverage": "nyc mocha --require ts-node/register --timeout 5000 --require source-map-support/register --recursive --ui bdd ./test/*.test.ts", 81 "coveralls": "nyc --reporter=lcov --reporter=text mocha --timeout 5000 --require ts-node/register --require source-map-support/register --recursive --ui bdd ./test/*.test.ts", 82 "lint": "eslint --max-warnings 0 -c .eslintrc.js --ext .ts src test", 83 "lint-ci": "eslint --max-warnings 0 -c .eslintrc.js -f @microsoft/eslint-formatter-sarif -o eslint-result.sarif --ext .ts src test", 84 "prettier-fix": "yarn prettier --write .", 85 "build": "yarn clean && yarn lint && yarn compile && yarn build:libs", 86 "build:libs": "yarn compile:umd && yarn compile:esm", 87 "compile:umd": "tsc -p ./tsconfig.umd.json", 88 "compile:esm": "tsc -p ./tsconfig.esm.json", 89 "check-dependencies": "node ./scripts/check-dependencies.js", 90 "pull-remote": "git pull https://github.com/redhat-developer/yaml-language-server.git main" 91 }, 92 "nyc": { 93 "extension": [ 94 ".ts", 95 ".tsx" 96 ], 97 "exclude": [ 98 "**/*.d.ts", 99 "test/", 100 "out", 101 "lib", 102 "coverage/", 103 ".eslintrc.js", 104 "scripts" 105 ], 106 "all": true 107 } 108}