-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"devDependencies": {
"@cucumber/cucumber": "^8.6.0",
"@cucumber/pretty-formatter": "^1.0.0",
"@types/cucumber": "^6.0.1",
"@types/jest": "^27.1.3",
"@types/node": "^14.0.27",
"@types/webpack": "^4.41.21",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^27.4.7",
"prettier": "^2.0.5",
"ts-jest": "^27.1.3",
"ts-loader": "^8.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.7.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"clean": "rimraf build",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --runInBand",
"unit-test": "jest --runInBand --testPathIgnorePatterns=/tests/drivers/ --testPathIgnorePatterns=/tests/entrypoints",
"integration-test": "jest --runInBand tests/drivers tests/entrypoints",
"bdd": "cucumber-js"
},
"dependencies": {
"@types/aws-lambda": "^8.10.61",
"@types/uuid": "^8.0.1",
"aws-lambda": "^1.0.6",
"aws-sdk": "^2.736.0",
"esbuild": "^0.14.54",
"fp-ts": "^2.8.1",
"io-ts": "^2.2.9",
"ksuid": "^1.2.0",
"source-map-support": "^0.5.16",
"uuid": "^8.3.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
],
"coverageThreshold": {
"global": {
"lines": 100,
"statements": 100,
"branches": 100,
"functions": 100
}
},
"coverageProvider": "babel",
"roots": [
"<rootDir>/tests/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}