AutoCommit/package.json

77 lines
1.8 KiB
JSON
Raw Normal View History

2019-12-20 11:12:22 +08:00
{
2019-12-26 17:47:37 +08:00
"name": "autoCommit",
"displayName": "autoCommit",
"description": "自动提交commit到github",
2019-12-26 21:05:27 +08:00
"publisher": "OBkoro1",
2019-12-26 17:47:37 +08:00
"version": "0.0.1",
2019-12-20 11:12:22 +08:00
"scripts": {
2019-12-26 20:56:51 +08:00
"build": "vsce package",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
2019-12-26 17:47:37 +08:00
"pretest": "npm run compile",
2019-12-26 20:56:51 +08:00
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
2019-12-20 11:12:22 +08:00
},
2019-12-26 17:47:37 +08:00
"engines": {
2019-12-26 21:05:27 +08:00
"vscode": "^1.41.0"
},
"repository": {
"type": "git",
"url": "https://github.com/OBKoro1/autoCommit"
2019-12-20 11:12:22 +08:00
},
2019-12-26 17:47:37 +08:00
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.autoCommit"
],
2019-12-26 21:05:27 +08:00
"main": "./out/extension.js",
2019-12-26 17:47:37 +08:00
"contributes": {
"commands": [
{
"command": "extension.autoCommit",
2019-12-26 20:56:51 +08:00
"title": "Github自动提交 autoCommit",
"category": "Github自动提交 autoCommit"
2019-12-26 17:47:37 +08:00
}
]
},
"keywords": [
"vscode korofileheader",
"korofileheader",
"annotation",
"comment",
"vscode comment",
"vscode annotation",
"vscode 注释",
"vscode 文件头部注释",
"注释",
"文件注释",
"头部注释",
"函数注释",
"fileheader",
"vscode-fileheader",
"Document This",
"obkoro1",
"koro1"
],
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.41.0",
2019-12-26 20:56:51 +08:00
"copy-webpack-plugin": "^5.1.1",
2019-12-26 17:47:37 +08:00
"glob": "^7.1.5",
"mocha": "^6.2.2",
2019-12-26 20:56:51 +08:00
"ts-loader": "^6.2.1",
2019-12-26 17:47:37 +08:00
"tslint": "^5.20.0",
2019-12-26 20:56:51 +08:00
"typescript": "^3.6.4",
"vscode": "^1.1.36",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
2019-12-20 11:12:22 +08:00
},
"dependencies": {
"moment": "^2.24.0"
}
}