mirror of
https://github.com/jlengrand/vscode-elm-signature.git
synced 2026-03-10 08:51:17 +00:00
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "vscode-elm-signature",
|
|
"displayName": "vscode-elm-signature",
|
|
"description": "vscode-elm-signature keeps track of all the functions in your elm repository and shows their signature so you can easily use them",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"publisher": "jlengrand",
|
|
"engines": {
|
|
"vscode": "^1.25.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"main": "./out/extension",
|
|
"activationEvents": [
|
|
"workspaceContains:**/*.elm"
|
|
],
|
|
"contributes": {
|
|
"views": {
|
|
"explorer": [
|
|
{
|
|
"id": "elmSignatures",
|
|
"name": "Elm Signatures"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"test": "npm run compile && node ./node_modules/vscode/bin/test"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^2.6.1",
|
|
"vscode": "^1.1.6",
|
|
"tslint": "^5.8.0",
|
|
"@types/node": "^7.0.43",
|
|
"@types/mocha": "^2.2.42"
|
|
}
|
|
}
|