3 Star 2 Fork 0

Gitee 极速下载/listtosql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/reZach/listtosql
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
package.json 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
reZach 提交于 2021-01-30 13:57 . updated needed deps;
{
"name": "listtosql",
"displayName": "ListToSQL",
"publisher": "reZach",
"description": "Converts a list of values into a list that SQL can use.",
"version": "1.0.0",
"engines": {
"vscode": "^1.31.0"
},
"repository": {
"type": "github",
"url": "https://github.com/reZach/listtosql"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:listtosql.run",
"onCommand:listtosql.run.vertical"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "listtosql.run",
"title": "List to SQL"
},
{
"command": "listtosql.run.vertical",
"title": "List to SQL (vertical)"
}
]
},
"eslintConfig": {
"root": true,
"env": {
"es6": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/member-delimiter-style": [
"warn",
{
"multiline": {
"delimiter": "semi",
"requireLast": true
},
"singleline": {
"delimiter": "semi",
"requireLast": false
}
}
],
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/no-unused-expressions": "warn",
"@typescript-eslint/semi": [
"warn",
"always"
],
"curly": "warn",
"eqeqeq": [
"warn",
"always"
],
"no-redeclare": "warn",
"no-throw-literal": "warn"
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:publish": "npm run vscode:prepublish && vsce package && vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/glob": "^7.1.3",
"@types/node": "^14.14.22",
"@types/vscode": "^1.31.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mirrors/listtosql.git
git@gitee.com:mirrors/listtosql.git
mirrors
listtosql
listtosql
master

搜索帮助