-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.77 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
{
"name": "crow-api",
"version": "2.4.3",
"license": "Apache-2.0",
"description": "AWS CDK Construct to create a serverless API based on file structure.",
"homepage": "https://github.com/thomasstep/crow-api",
"repository": "github:thomasstep/crow-api",
"bugs": {
"url": "https://github.com/thomasstep/crow-api/issues",
"email": "[email protected]"
},
"author": {
"name": "Thomas Step",
"email": "[email protected]",
"url": "https://thomasstep.com/"
},
"keywords": [
"awscdk",
"aws lambda",
"serverless"
],
"main": "index.js",
"files": [
"README.md",
"index.ts",
"cdk.json",
".jsii"
],
"bin": {
"crow-api": "bin/crow-api.ts"
},
"scripts": {
"build": "jsii",
"watch": "jsii --watch",
"package": "jsii-pacmak",
"release": "jsii-release",
"test": "tsc && jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk-lib": "2.18.0",
"constructs": "10.0.9",
"jest": "^26.4.2",
"jsii": "^1.46.0",
"jsii-config": "^1.46.0",
"jsii-pacmak": "^1.46.0",
"jsii-release": "^0.2.198",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"crow-api": "^2.3.3",
"fs-extra": "^10.0.0",
"source-map-support": "^0.5.16",
"aws-cdk-lib": "^2.18.0"
},
"bundledDependencies": [
"fs-extra",
"source-map-support"
],
"peerDependencies": {
"aws-cdk-lib": "^2.18.0",
"constructs": "^10.0.9"
},
"stability": "experimental",
"types": "index.d.ts",
"jsii": {
"outdir": "dist",
"versionFormat": "full",
"targets": {
"python": {
"distName": "crow-api.core",
"module": "crow_api.core"
}
}
}
}