This repository was archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.38 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.38 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@sourcegraph/lsp-client",
"version": "0.0.0-DEVELOPMENT",
"description": "Library that connects Sourcegraph extensions to language servers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/lsp-client.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"semantic-release": "semantic-release",
"prettier": "prettier '**/*.{js?(on),ts?(x),scss,yml,md}' --write --list-different",
"prettier-check": "npm run prettier -- --write=false",
"tslint": "tslint -c tslint.json -p tsconfig.json './src/**/*.ts?(x)'",
"build": "tsc -p .",
"watch": "tsc -p . -w",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --require ts-node/register",
"cover": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --require ts-node/register --all mocha"
},
"release": {
"branch": "latest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"mocha": {
"spec": "src/test/**/*.test.ts"
},
"nyc": {
"include": [
"src/**/*.ts?(x)"
],
"exclude": [
"**/*.test.ts?(x)",
"**/*.d.ts"
],
"extension": [
".tsx",
".ts"
],
"reporter": [
"text",
"json"
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@sourcegraph/extension-api-stubs": "^0.2.3",
"@sourcegraph/prettierrc": "^2.2.0",
"@sourcegraph/tsconfig": "^4.0.0",
"@sourcegraph/tslint-config": "^13.3.0",
"@types/lodash": "4.14.149",
"@types/mocha": "5.2.7",
"@types/mock-require": "2.0.0",
"@types/sinon": "7.0.13",
"@types/uuid": "3.4.5",
"husky": "^1.3.1",
"mocha": "^6.0.0",
"mock-require": "^3.0.3",
"nyc": "^13.1.0",
"prettier": "^1.19.1",
"semantic-release": "^16.0.0-beta.46",
"sinon": "^7.4.1",
"ts-node": "^8.0.2",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"@sourcegraph/vscode-ws-jsonrpc": "^0.0.3-fork",
"lodash": "^4.17.15",
"rxjs": "^6.4.0",
"sourcegraph": "^23.1.0",
"type-zoo": "^3.2.1",
"uuid": "^3.3.2",
"vscode-languageserver-protocol": "^3.14.1",
"vscode-languageserver-types": "^3.14.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}