chore: initial checkin
This commit is contained in:
71
package.json
Normal file
71
package.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"name": "gh-action-bot",
|
||||
"version": "0.0.0",
|
||||
"description": "Action bot for Github",
|
||||
"main": "index",
|
||||
"module": "index.mjs",
|
||||
"scripts": {
|
||||
"lint": "eslint \"*.{js,mjs}\" \"src/**/*.{js,mjs}\"",
|
||||
"precommit": "lint-staged",
|
||||
"version": "auto-changelog -p && auto-authors && git add CHANGELOG.md AUTHORS.md",
|
||||
"start": "node ."
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/w33ble/gh-action-bot.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"files": [
|
||||
"src/",
|
||||
"index.js",
|
||||
"index.mjs",
|
||||
"CHANGELOG.md",
|
||||
"AUTHORS.md"
|
||||
],
|
||||
"author": "Joe Fleming (https://github.com/w33ble)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/w33ble/gh-action-bot/issues"
|
||||
},
|
||||
"homepage": "https://github.com/w33ble/gh-action-bot",
|
||||
"auto-changelog": {
|
||||
"output": "CHANGELOG.md",
|
||||
"breakingPattern": "BREAKING CHANGE:",
|
||||
"template": ".changelog_template.hbs",
|
||||
"ignoreCommitPattern": "(chore|test):",
|
||||
"commitLimit": false
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,mjs}": [
|
||||
"eslint --fix"
|
||||
],
|
||||
"*.{js,mjs,json,css}": [
|
||||
"prettier --write"
|
||||
]
|
||||
},
|
||||
"prettier": {
|
||||
"printWidth": 100,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "es5"
|
||||
},
|
||||
"esm": {
|
||||
"cjs": true
|
||||
},
|
||||
"dependencies": {
|
||||
"esm": "^3.0.17"
|
||||
},
|
||||
"devDependencies": {
|
||||
"auto-authors": "^0.1.1",
|
||||
"auto-changelog": "^1.7.0",
|
||||
"eslint": "^4.9.0",
|
||||
"eslint-config-airbnb": "^16.1.0",
|
||||
"eslint-config-prettier": "^2.9.0",
|
||||
"eslint-plugin-import": "^2.7.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.0.2",
|
||||
"eslint-plugin-prettier": "^2.3.1",
|
||||
"eslint-plugin-react": "^7.1.0",
|
||||
"husky": "^0.14.3",
|
||||
"lint-staged": "^7.0.4",
|
||||
"prettier": "^1.9.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user