generated from silver886/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 KB
/
package.json
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": "@silver886/aws-cdk",
"version": "3.0.0",
"description": "Helpers for AWS CDK",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"comments": "leasot --ignore node_modules/** .git/** --tags NOTE OPTIMIZE TODO HACK XXX FIXME BUG --filetype .ts **",
"watch-test": "jest --coverage --watchAll",
"test": "jest --coverage",
"prepare": "tsc",
"prepublishOnly": "pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silver886/aws-cdk.git"
},
"keywords": [
"aws",
"cdk"
],
"author": {
"name": "Leo Liu",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/silver886/aws-cdk/issues"
},
"homepage": "https://github.com/silver886/aws-cdk#readme",
"devDependencies": {
"@silver886/eslint-config": "^2.2.3",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.23",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"aws-cdk-lib": "^2.35.0",
"constructs": "^10.1.66",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"jest-junit": "^13.2.0",
"leasot": "^13.2.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
},
"dependencies": {
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2",
"eslint-plugin-import": "^2"
}
}