@aws-cdk/service-spec-types 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@aws-cdk/service-spec-types",
3
+ "description": "Types for CloudFormation Service Specifications",
4
+ "scripts": {
5
+ "build": "npx projen build",
6
+ "bump": "npx projen bump",
7
+ "check-for-updates": "npx projen check-for-updates",
8
+ "compile": "npx projen compile",
9
+ "default": "npx projen default",
10
+ "eslint": "npx projen eslint",
11
+ "gather-versions": "npx projen gather-versions",
12
+ "nx": "npx projen nx",
13
+ "package": "npx projen package",
14
+ "post-compile": "npx projen post-compile",
15
+ "pre-compile": "npx projen pre-compile",
16
+ "test": "npx projen test",
17
+ "test:watch": "npx projen test:watch",
18
+ "unbump": "npx projen unbump",
19
+ "watch": "npx projen watch",
20
+ "projen": "npx projen"
21
+ },
22
+ "devDependencies": {
23
+ "@types/jest": "^29.5.2",
24
+ "@types/node": "^16",
25
+ "@typescript-eslint/eslint-plugin": "^5",
26
+ "@typescript-eslint/parser": "^5",
27
+ "eslint": "^8",
28
+ "eslint-config-prettier": "^8.8.0",
29
+ "eslint-import-resolver-node": "^0.3.7",
30
+ "eslint-import-resolver-typescript": "^3.5.5",
31
+ "eslint-plugin-import": "^2.27.5",
32
+ "eslint-plugin-prettier": "^4.2.1",
33
+ "jest": "^29.5.0",
34
+ "jest-junit": "^15",
35
+ "npm-check-updates": "^16",
36
+ "prettier": "^2.8.8",
37
+ "projen": "^0.71.115",
38
+ "ts-jest": "^29.1.0",
39
+ "typescript": "^4.9.5"
40
+ },
41
+ "dependencies": {
42
+ "@cdklabs/tskb": "^0.0.0"
43
+ },
44
+ "main": "lib/index.js",
45
+ "license": "Apache-2.0",
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "version": "0.0.0",
50
+ "jest": {
51
+ "testMatch": [
52
+ "<rootDir>/src/**/__tests__/**/*.ts?(x)",
53
+ "<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)"
54
+ ],
55
+ "clearMocks": true,
56
+ "collectCoverage": true,
57
+ "coverageReporters": [
58
+ "json",
59
+ "lcov",
60
+ "clover",
61
+ "cobertura",
62
+ "text"
63
+ ],
64
+ "coverageDirectory": "coverage",
65
+ "coveragePathIgnorePatterns": [
66
+ "/node_modules/"
67
+ ],
68
+ "testPathIgnorePatterns": [
69
+ "/node_modules/"
70
+ ],
71
+ "watchPathIgnorePatterns": [
72
+ "/node_modules/"
73
+ ],
74
+ "reporters": [
75
+ "default",
76
+ [
77
+ "jest-junit",
78
+ {
79
+ "outputDirectory": "test-reports"
80
+ }
81
+ ]
82
+ ],
83
+ "preset": "ts-jest",
84
+ "globals": {},
85
+ "transform": {
86
+ "^.+\\.tsx?$": [
87
+ "ts-jest",
88
+ {
89
+ "tsconfig": "tsconfig.dev.json"
90
+ }
91
+ ]
92
+ }
93
+ },
94
+ "types": "lib/index.d.ts",
95
+ "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
96
+ }