This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.92 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
76
{
"name": "circleci-aws-key-rotate",
"version": "2.0.0",
"description": "CircleCI AWS Access Key Rotation",
"main": ".build/src/handler.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"clean": "rm -rf .build && rm -rf .serverless",
"build": "npm run lint && tsc",
"deploy": "serverless deploy",
"clean-build": "npm run clean && npm run build",
"test": "jest --coverage"
},
"author": "Dom Parfitt",
"license": "Apache-2.0",
"dependencies": {
"@economist/aws-key-rotator": "^1.1.1",
"@types/isomorphic-fetch": "0.0.34",
"aws-sdk": "^2.404.0",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.19",
"@types/fetch-mock": "^6.0.5",
"@types/jest": "^23.3.14",
"@types/node": "^10.12.26",
"@types/sinon": "^7.0.6",
"@types/uuid": "^3.4.4",
"aws-event-mocks": "0.0.0",
"aws-sdk-mock": "^4.3.1",
"fetch-mock": "^7.3.0",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.1.1",
"jest-junit": "^6.3.0",
"node-fetch": "^2.3.0",
"serverless": "^1.35.1",
"serverless-offline": "^3.33.0",
"serverless-plugin-optimize": "^4.0.2-rc.1",
"serverless-plugin-typescript": "^1.1.5",
"sinon": "^7.2.3",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"uuid": "^3.3.2"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageDirectory": "test-results/jest/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**"
],
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"outputDirectory": "test-results/jest",
"outputName": "./js-test-results.xml",
"usePathForSuiteName": "true"
}
}