-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.31 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.31 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "aws-cdk-assert",
"version": "1.1.0",
"description": "This tool gives handy utilities to test AWS CDK Stack.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run buildUpdate && npm test && npm run typedoc",
"buildUpdate": "npm run clean && npm run compile && npm run copyToDist",
"copyToDist": "copyfiles -f *.md package.json dist",
"typedoc": "typedoc",
"clean": "rimraf ./dist ./docs ./reports ./coverage",
"test": "cross-env JEST_JUNIT_OUTPUT_DIR=./reports jest --coverage --detectOpenHandles",
"lint": "eslint . --ext .ts --fix",
"compile": "tsc && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idea-pool/aws-cdk-assert.git"
},
"keywords": [
"aws",
"cdk",
"assert"
],
"author": "Idea Pool <ideapool@epam.com>",
"contributors": [
"Laszlo Szikszai <sziklaszlo@gmail.com>"
],
"license": "MIT",
"files": [
"**/*.js",
"**/*.d.ts",
"**/*.js.map"
],
"engines": {
"node": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/idea-pool/aws-cdk-assert/issues"
},
"homepage": "https://github.com/idea-pool/aws-cdk-assert#readme",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"aws-cdk-lib": "^2.40.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"jest": "^28.1.3",
"jest-junit": "^14.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typedoc": "^0.23.13",
"typescript": "^4.8.2"
},
"peerDependencies": {
"aws-cdk-lib": "^2.40.0"
},
"dependencies": {
"tslib": "^2.3.1"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"dist"
],
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"./src/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
}
}
}