AutoCommit/package.json

92 lines
2.1 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",
2020-01-02 15:20:07 +08:00
"publisher": "OBKoro1",
"version": "1.0.0",
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
},
2020-01-02 15:20:07 +08:00
"homepage": "https://github.com/OBKoro1/autoCommit",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "OBKoro1",
"email": "obkoro1@foxmail.com",
"url": "http://obkoro1.com/web_accumulate/"
},
"galleryBanner": {
"color": "#3B4859",
"theme": "dark"
2019-12-26 21:05:27 +08:00
},
"repository": {
"type": "git",
"url": "https://github.com/OBKoro1/autoCommit"
2019-12-20 11:12:22 +08:00
},
2020-01-02 15:20:07 +08:00
"bugs": {
"url": "https://github.com/OBKoro1/koro1FileHeader/issues",
"email": "obkoro1@foxmail.com"
},
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
}
]
},
2020-01-02 15:20:07 +08:00
"engines": {
"vscode": "^1.41.0"
},
2019-12-26 17:47:37 +08:00
"keywords": [
2020-01-02 15:20:07 +08:00
"vscode autoCommit",
"autoCommit",
"auto commit",
"autocommit",
"自动commit",
"vscode 自动commit",
"vscode github",
"vscode commit",
"github commit",
"github autoCommit",
"git commit",
"git",
"github",
"commit",
"koro1",
2019-12-26 17:47:37 +08:00
"obkoro1",
2020-01-02 15:20:07 +08:00
"github 自动commit"
2019-12-26 17:47:37 +08:00
],
"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"
}
}