75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"name": "gh-action-bot",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"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": {
|
|
"dotenv": "^6.1.0",
|
|
"esm": "^3.0.17",
|
|
"octokat": "^0.10.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|