forked from fishbrain/codebuild-slack-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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
57
58
59
60
61
{
"name": "cb-to-slack",
"version": "1.3.0",
"description": "Send CodeBuild & CodePipeline events to Slack",
"main": "index.ts",
"repository": "git@github.com:10kft/codebuild-slack-notifier.git",
"author": "Erik Dalén <erik.gustav.dalen@gmail.com>",
"license": "MIT",
"scripts": {
"test": "tslint --project . && jest",
"lint": "tslint --project .",
"deploy": "serverless deploy",
"sls": "sls",
"logs:tools:PostUpdateToSlack": "sls logs -f PostUpdateToSlack --region us-west-2 --stage tools --startTime 10m -t"
},
"dependencies": {
"@slack/web-api": "^5.1.0",
"aws-sdk": "^2.503.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.31",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.8",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"serverless": "^1.49.0",
"serverless-iam-roles-per-function": "^2.0.1",
"serverless-pseudo-parameters": "^2.4.0",
"serverless-webpack": "^5.3.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-fishbrain": "^4.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3",
"typescript-tslint-plugin": "0.5.4",
"webpack": "^4.38.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}