forked from slackapi/slack-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "slack-github-action",
"version": "1.19.0",
"description": "The official slack github action. Use this to send data into your Slack workspace",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"test:mocha": "nyc mocha --config .mocharc.json test/*-test.js",
"test": "npm run lint && npm run test:mocha",
"build": "npx @vercel/ncc build src/index.js --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/slack-github-action.git"
},
"keywords": [
"slack",
"github",
"action",
"workflow"
],
"author": "Slack Technologies, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/slackapi/slack-github-action/issues"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.4.1"
},
"homepage": "https://github.com/slackapi/slack-github-action#readme",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"@slack/web-api": "^6.7.1",
"axios": "^0.27.2",
"flat": "^5.0.2",
"markup-js": "^1.5.21"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rewiremock": "^3.14.3",
"sinon": "^14.0.0"
}
}