-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "atom-languageclient",
"version": "1.16.1",
"description": "Integrate Language Servers with Atom",
"repository": "https://github.com/atom-ide-community/atom-languageclient",
"license": "MIT",
"main": "./build/lib/main",
"types": "./build/lib/main.d.ts",
"files": [
"build/lib",
"lib",
"typings"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "shx rm -rf build && mkdirp build",
"compile": "npm run copy.typings && tsc",
"copy.typings": "shx cp -r ./typings ./build",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "npm run clean && npm run compile",
"test": "npm run compile && atom --test build/test",
"test.format": "prettier . --check",
"test.lint": "eslint .",
"watch": "npm run compile -- --watch"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"atom-ide-base": "^3.3.0",
"rimraf": "^3.0.2",
"vscode-jsonrpc": "6.0.0",
"vscode-languageserver-protocol": "3.16.0",
"vscode-languageserver-types": "3.16.0",
"zadeh": "3.0.0-beta.4"
},
"devDependencies": {
"@types/atom": "^1.40.11",
"@types/jasmine": "^4.0.0",
"@types/node": "^17.0.0",
"@types/rimraf": "^3.0.2",
"atom-jasmine3-test-runner": "^5.2.9",
"eslint-config-atomic": "1.17.1",
"prettier-config-atomic": "^3.0.1",
"shx": "^0.3.3",
"spawk": "^1.7.1",
"standard-language-server": "^0.1.0",
"typescript": "~4.6.0"
},
"atomTestRunner": "./test/runner"
}