Files
vscode-elm-signature/package.json
Julien Lengrand-Lambert dbc50b969f Update banner color and README
2018-08-17 12:49:20 +02:00

58 lines
1.6 KiB
JSON

{
"name": "vscode-elm-signature",
"displayName": "elm-signature",
"description": "elm-signature provides hoogle like functionality to your Elm projects. You can use it to search your codebase to search by function name, or type signature",
"version": "0.1.1",
"license": "MIT",
"publisher": "jlengrand",
"author": {
"name": "Julien Lengrand-Lambert <julien@lengrand.fr> (http://lengrand.fr)"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"icon": "images/elm.png",
"galleryBanner": {
"color": "#eff1f3",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/jlengrand/vscode-elm-signature.git"
},
"bugs": {
"url": "https://github.com/jlengrand/vscode-elm-signature/issues"
},
"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"
}
}