-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"scripts": {
"lint": "eslint ./",
"test": "docker-compose -p pipeline-restoration-${BUILD_TAG:-1} -f compose/base.yml -f compose/test.yml up --remove-orphans --exit-code-from pipeline-restoration --build",
"tap": "tap",
"package": "./package.sh",
"release": "semantic-release",
"release:dry": "npm run release -- --dry-run --no-ci --branches ${GIT_BRANCH:-main}",
"test:ci": "./test-ci.sh"
},
"name": "pipeline-restoration-s3",
"description": "Lambda script to send S3 messages to Pipeline",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mezmo/pipeline-restoration-s3.git"
},
"author": "Greg Janco <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/",
"deployment/"
],
"extends": "logdna",
"parserOptions": {
"ecmaVersion": 2022
},
"env": {
"es2022": true
},
"rules": {
"max-len": [
2,
90,
{
"ignoreComments": true,
"ignoreTemplateLiterals": true
}
],
"space-unary-ops": [
2,
{
"words": false,
"nonwords": false,
"overrides": {
"yield": true
}
}
]
}
},
"bugs": {
"url": "https://github.com/mezmo/pipeline-restoration-s3/issues"
},
"homepage": "https://github.com/mezmo/pipeline-restoration-s3#readme",
"devDependencies": {
"@aws-sdk/client-lambda": "^3.496.0",
"@aws-sdk/client-s3": "^3.485.0",
"@aws-sdk/client-sqs": "^3.485.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.19.0",
"eslint-config-logdna": "^7.0.2",
"semantic-release": "^18.0.0",
"semantic-release-config-logdna": "^1.3.0",
"tap": "^18.6.1"
},
"dependencies": {
"@logdna/env-config": "^2.0.1"
}
}