2 Star 0 Fork 0

mirrors_sourcegraph/sourcegraph-project-view

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 2.64 KB
一键复制 编辑 原始数据 按行查看 历史
Quinn Slack 提交于 2018-11-07 06:29 +08:00 . build: no tree shaking
{
"name": "project-view",
"title": "Project view",
"description": "View and visualize projects defined in Markdown files in a repository.",
"publisher": "sourcegraph",
"version": "0.0.0-DEVELOPMENT",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/sourcegraph-project-view.git"
},
"bugs": {
"url": "https://github.com/sourcegraph/sourcegraph-project-view/issues"
},
"activationEvents": [
"*"
],
"contributes": {
"actions": [
{
"id": "projectView.openPanel",
"command": "openPanel",
"commandArguments": [
"projectView.panel"
],
"title": "Project chart",
"actionItem": {
"label": "Project chart",
"description": "View Gantt chart of projects"
}
}
],
"menus": {
"editor/title": [
{
"action": "projectView.openPanel",
"when": "resource"
}
],
"directory/page": [
{
"action": "projectView.openPanel",
"when": "resource"
}
],
"commandPalette": [
{
"action": "projectView.openPanel",
"when": "resource"
}
]
},
"views": {
"window/panel": [
{
"id": "projectView.panel"
}
]
}
},
"files": [
"dist"
],
"main": "dist/extension.js",
"scripts": {
"test": "mocha --require ts-node/register \"src/**/*.test.ts\"",
"commitmsg": "commitlint -e $GIT_PARAMS",
"prettier": "prettier '**/{*.{js?(on),ts?(x),scss},.*.js?(on)}' --write --list-different",
"tslint": "tslint -c tslint.json -p tsconfig.json './src/*.ts?(x)' './*.ts?(x)'",
"build": "parcel build src/extension.ts",
"serve": "parcel serve --no-hmr --no-source-maps src/extension.ts",
"watch": "tsc -p . -w",
"sourcegraph:prepublish": "npm run build"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"include": [
"src/**/*.ts?(x)"
],
"exclude": [
"**/*.test.ts?(x)"
],
"extension": [
".tsx",
".ts"
]
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@sourcegraph/prettierrc": "^2.2.0",
"@sourcegraph/tsconfig": "^3.0.0",
"@sourcegraph/tslint-config": "^12.0.0",
"@types/toposort": "^2.0.1",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2",
"sourcegraph": "^18.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"toposort": "^2.0.2"
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_sourcegraph/sourcegraph-project-view.git
git@gitee.com:mirrors_sourcegraph/sourcegraph-project-view.git
mirrors_sourcegraph
sourcegraph-project-view
sourcegraph-project-view
master

搜索帮助