-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 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
{
"name": "cdk-lambda-nodejs-mock",
"description": "Mock out NodeJsFunction's processor-intensive calls to Parcel/Docker",
"license": "MIT",
"version": "2.0.2",
"main": "dist/index.js",
"repository": "https://github.com/skyhookadventure/cdk-lambda-nodejs-mock.git",
"scripts": {
"build": "tsc --resolveJsonModule",
"watch": "tsc -w --resolveJsonModule",
"test": "jest",
"coverage": "jest --collect-coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"bump": "versiony package.json --patch"
},
"devDependencies": {
"@aws-cdk/assert": "^2.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"typescript": "~4.6.3",
"versiony-cli": "^1.3.0"
},
"peerDependencies": {
"aws-cdk-lib": "^2"
},
"jest": {
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 50,
"lines": 100,
"statements": 100
}
}
}
}