This repository was archived by the owner on Jul 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.55 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cdk-demo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/msayson/cdk-demo.git"
},
"version": "0.2.0",
"bin": {
"cdk-demo": "bin/cdk-demo.js"
},
"scripts": {
"build": "tsc",
"cdk": "cdk",
"compile": "tsc",
"docs": "typedoc",
"lint": "eslint --ignore-pattern node_modules --fix \"lib/**/*.ts\"",
"prepublishOnly": "npm run compile && npm run lint",
"test": "jest",
"test:clean": "jest --clearCache",
"watch": "tsc -w"
},
"dependencies": {
"aws-cdk-lib": "~2.95.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@types/jest": "^29.0",
"@types/node": "10.17.5",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^7.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^29.0",
"ts-jest": "^29.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.1",
"typescript": "^5.0.3"
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"<rootDir>/test/**/*.test.ts"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/lib/**/*.ts"
],
"coveragePathIgnorePatterns": [
"!*.d.ts",
"index.ts"
],
"coverageReporters": [
"text",
"cobertura",
"html"
],
"coverageThreshold": {
"global": {
"branches": 100,
"lines": 100
}
}
}
}