|
1 | 1 | { |
2 | 2 | "name": "ec2-instance-connect-endpoint", |
3 | | - "version": "0.0.0", |
4 | 3 | "repository": { |
5 | 4 | "type": "git", |
6 | 5 | "url": "https://github.com/aws-samples/aws-cdk-examples.git" |
7 | 6 | }, |
8 | 7 | "scripts": { |
9 | | - "build": "tsc", |
10 | | - "watch": "tsc -w", |
11 | | - "test": "jest", |
12 | | - "cdk": "cdk" |
| 8 | + "build": "npx projen build", |
| 9 | + "bump": "npx projen bump", |
| 10 | + "clobber": "npx projen clobber", |
| 11 | + "compat": "npx projen compat", |
| 12 | + "compile": "npx projen compile", |
| 13 | + "default": "npx projen default", |
| 14 | + "docgen": "npx projen docgen", |
| 15 | + "eject": "npx projen eject", |
| 16 | + "eslint": "npx projen eslint", |
| 17 | + "package": "npx projen package", |
| 18 | + "package-all": "npx projen package-all", |
| 19 | + "package:js": "npx projen package:js", |
| 20 | + "post-compile": "npx projen post-compile", |
| 21 | + "post-upgrade": "npx projen post-upgrade", |
| 22 | + "pre-compile": "npx projen pre-compile", |
| 23 | + "release": "npx projen release", |
| 24 | + "test": "npx projen test", |
| 25 | + "test:watch": "npx projen test:watch", |
| 26 | + "unbump": "npx projen unbump", |
| 27 | + "upgrade": "npx projen upgrade", |
| 28 | + "watch": "npx projen watch", |
| 29 | + "projen": "npx projen" |
13 | 30 | }, |
14 | 31 | "author": { |
15 | 32 | "name": "Pahud Hsieh", |
16 | | - |
| 33 | + |
| 34 | + "organization": false |
17 | 35 | }, |
18 | 36 | "devDependencies": { |
19 | | - "@types/jest": "^29.5.14", |
| 37 | + "@types/jest": "^29.5.2", |
20 | 38 | "@types/node": "^16", |
21 | 39 | "@typescript-eslint/eslint-plugin": "^5", |
22 | 40 | "@typescript-eslint/parser": "^5", |
23 | 41 | "aws-cdk": "2.85.0", |
24 | 42 | "aws-cdk-lib": "2.85.0", |
25 | 43 | "constructs": "10.0.5", |
26 | 44 | "eslint": "^8", |
27 | | - "jest": "^29.7.0", |
28 | | - "ts-jest": "^29.2.5", |
29 | | - "ts-node": "^10.9.2", |
30 | | - "typescript": "~5.6.3" |
| 45 | + "eslint-import-resolver-node": "^0.3.7", |
| 46 | + "eslint-import-resolver-typescript": "^3.5.5", |
| 47 | + "eslint-plugin-import": "^2.27.5", |
| 48 | + "jest": "^29.5.0", |
| 49 | + "jest-junit": "^15", |
| 50 | + "jsii": "~5.0.0", |
| 51 | + "jsii-diff": "^1.84.0", |
| 52 | + "jsii-docgen": "^9.0.14", |
| 53 | + "jsii-pacmak": "^1.84.0", |
| 54 | + "jsii-rosetta": "~5.0.0", |
| 55 | + "npm-check-updates": "^16", |
| 56 | + "projen": "^0.71.118", |
| 57 | + "standard-version": "^9", |
| 58 | + "ts-jest": "^29.1.1", |
| 59 | + "ts-node": "^10.9.1", |
| 60 | + "typescript": "^5.1.6" |
31 | 61 | }, |
32 | 62 | "peerDependencies": { |
33 | 63 | "aws-cdk-lib": "^2.85.0", |
|
41 | 71 | "cdk" |
42 | 72 | ], |
43 | 73 | "main": "lib/index.js", |
| 74 | + "license": "Apache-2.0", |
| 75 | + "version": "0.0.0", |
| 76 | + "jest": { |
| 77 | + "testMatch": [ |
| 78 | + "<rootDir>/src/**/__tests__/**/*.ts?(x)", |
| 79 | + "<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)" |
| 80 | + ], |
| 81 | + "clearMocks": true, |
| 82 | + "collectCoverage": true, |
| 83 | + "coverageReporters": [ |
| 84 | + "json", |
| 85 | + "lcov", |
| 86 | + "clover", |
| 87 | + "cobertura", |
| 88 | + "text" |
| 89 | + ], |
| 90 | + "coverageDirectory": "coverage", |
| 91 | + "coveragePathIgnorePatterns": [ |
| 92 | + "/node_modules/" |
| 93 | + ], |
| 94 | + "testPathIgnorePatterns": [ |
| 95 | + "/node_modules/" |
| 96 | + ], |
| 97 | + "watchPathIgnorePatterns": [ |
| 98 | + "/node_modules/" |
| 99 | + ], |
| 100 | + "reporters": [ |
| 101 | + "default", |
| 102 | + [ |
| 103 | + "jest-junit", |
| 104 | + { |
| 105 | + "outputDirectory": "test-reports" |
| 106 | + } |
| 107 | + ] |
| 108 | + ], |
| 109 | + "preset": "ts-jest", |
| 110 | + "globals": { |
| 111 | + "ts-jest": { |
| 112 | + "tsconfig": "tsconfig.dev.json" |
| 113 | + } |
| 114 | + } |
| 115 | + }, |
44 | 116 | "types": "lib/index.d.ts", |
45 | | - "license": "Apache-2.0" |
| 117 | + "stability": "stable", |
| 118 | + "jsii": { |
| 119 | + "outdir": "dist", |
| 120 | + "targets": {}, |
| 121 | + "tsc": { |
| 122 | + "outDir": "lib", |
| 123 | + "rootDir": "src" |
| 124 | + } |
| 125 | + }, |
| 126 | + "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"." |
46 | 127 | } |
0 commit comments