-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
138 lines (138 loc) · 4.23 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"//": "Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
"name": "cdk-serverless-lamp",
"description": "A JSII construct lib to build AWS Serverless LAMP with AWS CDK",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pahud/cdk-serverless-lamp.git"
},
"bin": {
"jsii-release-npm": "bin/jsii-release-npm"
},
"scripts": {
"projen": "node .projenrc.js && yarn install",
"no-changes": "(git log --oneline -1 | grep -q \"chore(release):\") && echo \"No changes to release.\"",
"bump": "yarn --silent no-changes || standard-version",
"release": "yarn --silent no-changes || (yarn bump && git push --follow-tags origin master)",
"projen:upgrade": "chmod +w package.json && yarn upgrade -L projen && chmod -w package.json && yarn projen",
"compile": "jsii --silence-warnings=reserved-word && jsii-docgen",
"watch": "jsii -w --silence-warnings=reserved-word",
"package": "jsii-pacmak",
"build": "yarn test && yarn compile && yarn run package",
"eslint": "eslint . --ext .ts",
"test": "yarn eslint && rm -fr lib/ && jest --passWithNoTests --updateSnapshot",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"compat": "npx jsii-diff npm:$(node -p \"require('./package.json').name\") -k --ignore-file .compatignore || (echo \"\nUNEXPECTED BREAKING CHANGES: add keys such as 'removed:constructs.Node.of' to .compatignore to skip.\n\" && exit 1)",
"docgen": "jsii-docgen"
},
"author": {
"name": "Pahud Hsieh",
"email": "[email protected]",
"organization": false
},
"devDependencies": {
"constructs": "3.0.4",
"@aws-cdk/core": "1.56.0",
"@aws-cdk/aws-apigateway": "1.56.0",
"@aws-cdk/aws-apigatewayv2": "1.56.0",
"@aws-cdk/aws-ec2": "1.56.0",
"@aws-cdk/aws-iam": "1.56.0",
"@aws-cdk/aws-lambda": "1.56.0",
"@aws-cdk/aws-secretsmanager": "1.56.0",
"@aws-cdk/aws-rds": "1.56.0",
"@aws-cdk/assert": "^1.56.0",
"@types/jest": "^26.0.7",
"@types/node": "^10.17.0",
"ts-jest": "^26.1.0",
"jest": "^26.0.1",
"projen": "^0.3.20",
"standard-version": "^8.0.1",
"typescript": "^3.9.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"json-schema": "^0.2.5",
"jsii": "^1.5.0",
"jsii-diff": "^1.5.0",
"jsii-pacmak": "^1.5.0",
"jsii-release": "^0.1.6",
"jsii-docgen": "^1.3.2"
},
"peerDependencies": {
"constructs": "^3.0.4",
"@aws-cdk/core": "^1.56.0",
"@aws-cdk/aws-apigateway": "^1.56.0",
"@aws-cdk/aws-apigatewayv2": "^1.56.0",
"@aws-cdk/aws-ec2": "^1.56.0",
"@aws-cdk/aws-iam": "^1.56.0",
"@aws-cdk/aws-lambda": "^1.56.0",
"@aws-cdk/aws-secretsmanager": "^1.56.0",
"@aws-cdk/aws-rds": "^1.56.0"
},
"dependencies": {
"constructs": "^3.0.4",
"@aws-cdk/core": "^1.56.0",
"@aws-cdk/aws-apigateway": "^1.56.0",
"@aws-cdk/aws-apigatewayv2": "^1.56.0",
"@aws-cdk/aws-ec2": "^1.56.0",
"@aws-cdk/aws-iam": "^1.56.0",
"@aws-cdk/aws-lambda": "^1.56.0",
"@aws-cdk/aws-secretsmanager": "^1.56.0",
"@aws-cdk/aws-rds": "^1.56.0"
},
"bundledDependencies": [],
"keywords": [
"aws",
"serverless",
"lamp"
],
"engines": {
"node": ">= 10.17.0"
},
"license": "Apache-2.0",
"version": "1.3.7",
"types": "lib/index.d.ts",
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"preset": "ts-jest",
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
}
},
"stability": "experimental",
"jsii": {
"outdir": "dist",
"targets": {
"python": {
"distName": "cdk-serverless-lamp",
"module": "cdk_serverless_lamp"
}
},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"awscdkio": {
"twitter": "@pahudnet",
"announce": false
}
}