forked from atom/atom-languageclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "@lloiser/atom-languageclient",
"version": "0.10.1",
"description": "Integrate Language Servers with Atom",
"repository": "https://github.com/lloiser/atom-languageclient",
"license": "MIT",
"main": "./build/lib/main",
"types": "./build/lib/main.d.ts",
"scripts": {
"clean": "rm -rf build",
"compile": "npm run clean && tsc",
"watch": "tsc -watch",
"lint": "tslint -c tslint.json 'lib/**/*.ts' 'test/**/*.ts' 'typings/**/*.d.ts'",
"prepublishOnly": "npm test",
"test": "npm run lint && npm run compile && atom --test build/test"
},
"dependencies": {
"fuzzaldrin-plus": "^0.6.0",
"vscode-jsonrpc": "4.0.0",
"vscode-languageserver-protocol": "3.12.0",
"vscode-languageserver-types": "3.12.0"
},
"devDependencies": {
"@types/atom": "^1.31.0",
"@types/chai": "^4.1.7",
"@types/fuzzaldrin-plus": "0.6.0",
"@types/mocha": "^5.2.5",
"@types/node": "8.9.3",
"@types/sinon": "^4.1.3",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"mocha-appveyor-reporter": "^0.4.2",
"sinon": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "~3.1.6"
}
}