Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/npm_and_yarn/diff-and-mocha-5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gkouziik authored Jan 2, 2024
2 parents 717c746 + 845a6ec commit defb5c8
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 35 deletions.
16 changes: 16 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"github": {
"release": true
},
"git": {
"requireBranch": "master",
"commitMessage": "Release v${version}"
},
"hooks": {
"before:init": ["git pull","npm run test"],
"after:bump": "npx auto-changelog -p"
},
"npm": {
"publish": true
}
}
68 changes: 36 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-security-node",
"version": "1.0.11",
"version": "1.1.1",
"description": "Create a security plugin for node.js",
"keywords": [
"eslint",
Expand All @@ -13,7 +13,8 @@
"main": "index.js",
"scripts": {
"test": "mocha tests --recursive",
"lint": "./node_modules/.bin/eslint ."
"lint": "./node_modules/.bin/eslint .",
"release": "release-it"
},
"repository": {
"type": "git",
Expand All @@ -23,7 +24,8 @@
"dependencies": {},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "^10.2.0"
"mocha": "^10.2.0",
"release-it": "^17.0.1"
},
"engines": {
"node": ">=0.10.0"
Expand Down

0 comments on commit defb5c8

Please sign in to comment.