Files
spring-tools/atom-extensions/atom-commons/package.json

35 lines
859 B
JSON

{
"name": "@pivotal-tools/atom-languageclient-commons",
"version": "0.0.15",
"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.9",
"portfinder": "^1.0.13",
"@types/atom": "^1.24.1",
"@types/node": "^8.0.41"
},
"devDependencies": {
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}