mirror of
https://github.com/pomber/git-history.git
synced 2024-11-22 23:13:20 +03:00
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "git-file-history",
|
|
"displayName": "Git File History",
|
|
"description": "Modern, fast and intuitive tool for browsing the history and files in any git repository",
|
|
"version": "0.1.1",
|
|
"repository": "pomber/git-history",
|
|
"publisher": "pomber",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"git",
|
|
"history",
|
|
"log",
|
|
"file",
|
|
"commit",
|
|
"show"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.30.2"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"icon": "images/icon.png",
|
|
"galleryBanner": {
|
|
"color": "#011627",
|
|
"theme": "dark"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:extension.git-file-history"
|
|
],
|
|
"main": "./extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.git-file-history",
|
|
"title": "Git File History"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build-site": "cd .. && cross-env PUBLIC_URL=. REACT_APP_GIT_PROVIDER=vscode yarn build && rm -fr vscode-ext/site/ && cp -r build/ vscode-ext/site/",
|
|
"build": " yarn build-site",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"test": "node ./node_modules/vscode/bin/test",
|
|
"vscode:prepublish": "yarn build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^2.2.42",
|
|
"@types/node": "^10.12.21",
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "^5.13.0",
|
|
"typescript": "^3.3.1",
|
|
"vscode": "^1.1.28"
|
|
},
|
|
"dependencies": {
|
|
"execa": "^1.0.0"
|
|
}
|
|
}
|