-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 963 Bytes
/
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
{
"author": {
"email": "[email protected]",
"name": "Joel Day",
"url": "https://github.com/joelday"
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "src/index.d.ts",
"description": "Winston transport for vscode-languageserver's RemoteConsole.",
"license": "MIT",
"name": "winston-vscode-languageserver",
"scripts": {
"clean": "rimraf lib",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"test": "jest"
},
"version": "1.0.0",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/triple-beam": "^1.3.0",
"jest": "^23.5.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3",
"winston": "^3.1.0"
},
"dependencies": {
"vscode-languageserver": "^5.0.3",
"winston-transport": "^4.2.0"
}
}