forked from act10ns/slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.6 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
54
55
56
57
58
{
"name": "slack",
"version": "1.5.1",
"private": true,
"description": "Notify Slack of GitHub Actions job and step status.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"package:test": "ncc run dist/index.js",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/act10ns/slack.git"
},
"keywords": [
"actions",
"slack",
"notify"
],
"author": "satterly",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^4.0.0",
"@octokit/webhooks": "^7.15.1",
"@slack/webhook": "^6.0.0",
"@types/js-yaml": "^4.0.4",
"flow-bin": "^0.138.0",
"graphql": "^15.4.0",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/istanbul-lib-report": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.5",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/ncc": "^0.31.1",
"axios-mock-adapter": "^1.19.0",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^25.0.5",
"jest": "^27.3.1",
"jest-circus": "^26.6.3",
"js-yaml": "^4.1.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}