This repository was archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "codepipeline-github-status",
"version": "1.0.0",
"description": "Report status from CodePipeline to Github",
"main": "index.ts",
"repository": "git@github.com:fishbrain/codepipeline-github-status.git",
"author": "Erik Dalén <erik.gustav.dalen@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"test": "eslint --ext ts,js . && npx sls package",
"lint": "eslint --ext ts,js .",
"deploy:staging": "serverless deploy --stage staging",
"deploy:production": "serverless deploy --stage production",
"build": "tsc"
},
"dependencies": {
"@octokit/rest": "^18.8.0",
"aws-sdk": "^2.1293.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.109",
"@types/jest": "^26.0.24",
"@types/node": "^16",
"eslint": "^7.32.0",
"eslint-config-fishbrain-base": "^2.1.1",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"serverless": "^3.33.0",
"serverless-plugin-datadog": "^5.38.1",
"serverless-plugin-resource-tagging": "^1.2.0",
"serverless-scriptable-plugin": "^1.2.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.4",
"typescript": "^4.3.5"
},
"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"
}
}
}