AutoCommit/package.json
dependabot[bot] 875d3b1aa8
chore(deps): bump json5, tsconfig-paths, copy-webpack-plugin, ts-loader, webpack and webpack-cli
Bumps [json5](https://github.com/json5/json5) to 2.2.3 and updates ancestor dependencies [json5](https://github.com/json5/json5), [tsconfig-paths](https://github.com/dividab/tsconfig-paths), [copy-webpack-plugin](https://github.com/webpack-contrib/copy-webpack-plugin), [ts-loader](https://github.com/TypeStrong/ts-loader), [webpack](https://github.com/webpack/webpack) and [webpack-cli](https://github.com/webpack/webpack-cli). These dependencies need to be updated together.


Updates `json5` from 1.0.1 to 2.2.3
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v1.0.1...v2.2.3)

Updates `tsconfig-paths` from 3.9.0 to 3.10.1
- [Release notes](https://github.com/dividab/tsconfig-paths/releases)
- [Changelog](https://github.com/dividab/tsconfig-paths/blob/master/CHANGELOG.md)
- [Commits](https://github.com/dividab/tsconfig-paths/compare/v3.9.0...v3.10.1)

Updates `copy-webpack-plugin` from 5.1.2 to 11.0.0
- [Release notes](https://github.com/webpack-contrib/copy-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/copy-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v5.1.2...v11.0.0)

Updates `ts-loader` from 6.2.2 to 9.4.2
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/ts-loader/compare/v6.2.2...v9.4.2)

Updates `webpack` from 4.46.0 to 5.75.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v4.46.0...v5.75.0)

Updates `webpack-cli` from 3.3.12 to 5.0.1
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.12...webpack-cli@5.0.1)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
- dependency-name: tsconfig-paths
  dependency-type: indirect
- dependency-name: copy-webpack-plugin
  dependency-type: direct:development
- dependency-name: ts-loader
  dependency-type: direct:development
- dependency-name: webpack
  dependency-type: direct:development
- dependency-name: webpack-cli
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-01 14:45:44 +00:00

117 lines
2.8 KiB
JSON

{
"name": "autoCommit",
"displayName": "Auto Commit",
"description": "自动提交commit到github",
"publisher": "OBKoro1",
"version": "1.0.9",
"scripts": {
"build": "vsce package",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"pretest": "npm run compile",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test",
"lint": "eslint --ext .ts,.vue src --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{ts,vue}": [
"npm run lint",
"git add"
]
},
"homepage": "https://github.com/OBKoro1/autoCommit",
"license": "MIT",
"author": {
"name": "OBKoro1",
"email": "obkoro1@foxmail.com",
"url": "http://obkoro1.com/web_accumulate/"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#3B4859",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/OBKoro1/autoCommit"
},
"bugs": {
"url": "https://github.com/OBKoro1/autoCommit/issues",
"email": "obkoro1@foxmail.com"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.autoCommit"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.autoCommit",
"title": "控制Github绿色格子的commit数量",
"category": "auto commit Github自动提交 "
}
]
},
"engines": {
"vscode": "^1.41.0"
},
"keywords": [
"koroFileHeader",
"autoCommit",
"auto commit",
"autocommit",
"自动commit",
"vscode 自动commit",
"vscode github",
"vscode commit",
"github commit",
"github autoCommit",
"git commit",
"自动提交",
"git 自动提交",
"github 自动提交",
"git",
"github",
"commit",
"koro1",
"obkoro1",
"github 自动commit"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.41.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.6.1",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"glob": "^7.1.5",
"husky": "^4.3.6",
"mocha": "^6.2.2",
"ts-loader": "^9.4.2",
"typescript": "^3.9.7",
"vscode": "^1.1.37",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"eslint-plugin-import": "^2.22.1",
"lint-staged": "^10.5.3",
"moment": "^2.24.0"
}
}