36 lines
912 B
JSON
36 lines
912 B
JSON
{
|
|
"name": "@pivotal-tools/atom-languageclient-commons",
|
|
"version": "0.0.5",
|
|
"description": "Atom language client commons for STS4 language servers",
|
|
"repository": "https://github.com/spring-projects/sts4",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"atom": ">=1.24.0"
|
|
},
|
|
"main": "./build/main",
|
|
"types": "./build/main.d.ts",
|
|
"files": [
|
|
"build/",
|
|
"lib/"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf build",
|
|
"compile": "tsc",
|
|
"watch": "tsc -watch",
|
|
"lint": "tslint -c tslint.json 'lib/**/*.ts'",
|
|
"prepublish": "npm run clean && npm run compile"
|
|
},
|
|
"dependencies": {
|
|
"@pivotal-tools/jvm-launch-utils": "0.0.11",
|
|
"atom-languageclient": "0.9.2",
|
|
"portfinder": "^1.0.13",
|
|
"@types/atom": "^1.24.1",
|
|
"@types/node": "^8.0.41",
|
|
"vscode-languageserver-protocol": "3.6.0-next.5"
|
|
},
|
|
"devDependencies": {
|
|
"tslint": "^5.9.1",
|
|
"typescript": "^2.7.2"
|
|
}
|
|
}
|