Files
slash-command-dispatch/package.json

55 lines
1.5 KiB
JSON

{
"name": "slash-command-dispatch",
"version": "2.0.0",
"private": true,
"description": "Facilitates 'ChatOps' by creating dispatch events for slash commands",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest unit",
"test:int": "jest int"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/slash-command-dispatch.git"
},
"keywords": [
"slash",
"command",
"dispatch"
],
"author": "Peter Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/peter-evans/slash-command-dispatch/issues"
},
"homepage": "https://github.com/peter-evans/slash-command-dispatch#readme",
"dependencies": {
"@actions/core": "1.5.0",
"@actions/github": "5.0.0",
"@octokit/core": "3.5.1",
"@octokit/plugin-paginate-rest": "2.16.0",
"@octokit/plugin-rest-endpoint-methods": "5.9.0",
"http-proxy-agent": "4.0.1",
"https-proxy-agent": "5.0.0"
},
"devDependencies": {
"@types/jest": "27.0.1",
"@types/node": "16.7.10",
"@typescript-eslint/parser": "4.30.0",
"@vercel/ncc": "0.30.0",
"eslint": "7.32.0",
"eslint-plugin-github": "4.2.0",
"eslint-plugin-jest": "24.4.0",
"jest": "27.1.0",
"jest-circus": "27.1.0",
"js-yaml": "4.1.0",
"prettier": "2.3.2",
"ts-jest": "27.0.5",
"typescript": "4.4.2"
}
}