This repository was archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 KB
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
{
"name": "codebuild-slack-notifier",
"version": "1.1.0",
"description": "Send CodeBuild & CodePipeline events to Slack",
"main": "index.ts",
"type": "module",
"repository": "git@github.com:fishbrain/codebuild-slack-notifier.git",
"author": "Erik Dalén <erik.gustav.dalen@gmail.com>",
"license": "MIT",
"scripts": {
"test": "eslint --ext ts,js . && jest",
"lint": "eslint --ext ts,js .",
"deploy": "serverless deploy",
"sls": "sls",
"build": "tsc",
"logs:tools:PostUpdateToSlack": "sls logs -f PostUpdateToSlack --region eu-west-1 --stage tools --startTime 10m -t"
},
"dependencies": {
"@slack/web-api": "^5.12.0",
"aws-sdk": "^2.832.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.71",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"eslint": "^7.18.0",
"eslint-config-fishbrain-base": "^2.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^25.5.4",
"prettier": "^2.2.1",
"serverless": "^2.21.1",
"serverless-iam-roles-per-function": "^3.1.0",
"serverless-pseudo-parameters": "^2.5.0",
"serverless-scriptable-plugin": "^1.0.5",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "ts-jest"
},
"eslintIgnore": [
"dist"
],
"eslintConfig": {
"extends": [
"eslint-config-fishbrain-base"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off"
}
}
}