Files
spring-tools/atom-extensions/atom-concourse/package.json
2019-04-18 16:42:04 +00:00

111 lines
2.4 KiB
JSON

{
"name": "concourse-pipeline-yaml",
"version": "1.7.0",
"description": "Provides validation and content assist for Concourse CI pipeline and task configuration yml files",
"repository": "https://github.com/spring-projects/atom-concourse",
"icon": "icon.png",
"license": "EPL-1.0",
"engines": {
"atom": ">=1.24.0"
},
"main": "./build/main",
"types": "./build/main.d.ts",
"files": [
"grammars/",
"settings/",
"build/",
"lib/",
"server/",
"properties.json"
],
"configSchema": {
"java": {
"type": "object",
"description": "JVM settings for starting the Language Server",
"properties": {
"vmargs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom VM arguments to start the Language Server"
},
"home": {
"type": "string",
"description": "Java home folder to use to start the Language Server"
}
}
}
},
"dependencies": {
"atom-package-deps": "^4.6.0",
"download": "^6.2.5",
"@pivotal-tools/atom-languageclient-commons": "0.0.15"
},
"devDependencies": {
"typescript": "^2.7.2",
"tslint": "^5.9.1",
"coffeelint": "^1.10.1"
},
"scripts": {
"clean": "rm -fr build",
"compile": "tsc",
"build": "npm run clean && npm run compile ",
"watch": "tsc -watch",
"lint": "tslint -c tslint.json 'lib/**/*.ts'",
"postinstall": "node script.js"
},
"package-deps": [
"atom-ide-ui"
],
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"code-actions": {
"versions": {
"0.1.0": "provideCodeActions"
}
},
"code-format.range": {
"versions": {
"0.1.0": "provideCodeFormat"
}
},
"code-highlight": {
"versions": {
"0.1.0": "provideCodeHighlight"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
}
}