|
| 1 | +{ |
| 2 | + "name": "@sourcegraph/lsp-client", |
| 3 | + "version": "0.0.0-DEVELOPMENT", |
| 4 | + "description": "Library that connects Sourcegraph extensions to language servers", |
| 5 | + "license": "MIT", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "https://github.com/sourcegraph/lsp-client.git" |
| 9 | + }, |
| 10 | + "files": [ |
| 11 | + "dist" |
| 12 | + ], |
| 13 | + "main": "dist/index.js", |
| 14 | + "types": "dist/index.d.ts", |
| 15 | + "scripts": { |
| 16 | + "test": "mocha --require ts-node/register \"src/**/*.test.ts\"", |
| 17 | + "semantic-release": "semantic-release", |
| 18 | + "prettier": "prettier '**/{*.{js?(on),ts?(x),scss},.*.js?(on)}' --write --list-different", |
| 19 | + "tslint": "tslint -c tslint.json -p tsconfig.json './src/*.ts?(x)' './*.ts?(x)'", |
| 20 | + "build": "tsc -p .", |
| 21 | + "watch": "tsc -p . -w" |
| 22 | + }, |
| 23 | + "commitlint": { |
| 24 | + "extends": [ |
| 25 | + "@commitlint/config-conventional" |
| 26 | + ] |
| 27 | + }, |
| 28 | + "nyc": { |
| 29 | + "include": [ |
| 30 | + "src/**/*.ts?(x)" |
| 31 | + ], |
| 32 | + "exclude": [ |
| 33 | + "**/*.test.ts?(x)" |
| 34 | + ], |
| 35 | + "extension": [ |
| 36 | + ".tsx", |
| 37 | + ".ts" |
| 38 | + ] |
| 39 | + }, |
| 40 | + "devDependencies": { |
| 41 | + "@commitlint/cli": "^7.2.1", |
| 42 | + "@commitlint/config-conventional": "^7.1.2", |
| 43 | + "@sourcegraph/prettierrc": "^2.2.0", |
| 44 | + "@sourcegraph/tsconfig": "^3.0.0", |
| 45 | + "@sourcegraph/tslint-config": "^12.2.0", |
| 46 | + "@types/lodash": "^4.14.119", |
| 47 | + "@types/uuid": "^3.4.4", |
| 48 | + "husky": "^1.3.1", |
| 49 | + "mocha": "^5.2.0", |
| 50 | + "nyc": "^13.1.0", |
| 51 | + "prettier": "^1.15.3", |
| 52 | + "semantic-release": "^15.13.1", |
| 53 | + "tslint": "^5.12.0", |
| 54 | + "typescript": "^3.2.2" |
| 55 | + }, |
| 56 | + "dependencies": { |
| 57 | + "@sourcegraph/vscode-ws-jsonrpc": "^0.0.3-fork", |
| 58 | + "lodash": "^4.17.11", |
| 59 | + "rxjs": "^6.3.3", |
| 60 | + "sourcegraph": "^20.0.0", |
| 61 | + "type-zoo": "^3.2.1", |
| 62 | + "uuid": "^3.3.2", |
| 63 | + "vscode-languageserver-protocol": "^3.14.1", |
| 64 | + "vscode-languageserver-types": "^3.14.0" |
| 65 | + }, |
| 66 | + "husky": { |
| 67 | + "hooks": { |
| 68 | + "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS" |
| 69 | + } |
| 70 | + } |
| 71 | +} |
0 commit comments