forked from udondan/iam-floyd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.34 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
{
"scripts": {
"pregenerate": "find lib bin -name \"*.js\" -type f -exec rm -vf {} \\;",
"generate": "tsc bin/generate.ts lib/generator/*.ts && node bin/generate.js",
"index-managed-policies": "tsc bin/index-managed-policies.ts lib/generator/*.ts && node bin/index-managed-policies.js",
"build": "jsii --silence-warnings reserved-word",
"build:watch": "jsii -w",
"package": "jsii-pacmak",
"test": "npx ts-node test/main.ts"
},
"name": "iam-floyd",
"description": "AWS IAM policy statement generator with fluent interface",
"version": "0.0.0",
"license": "Apache-2.0",
"author": {
"name": "Daniel Schroeder",
"url": "https://www.udondan.com/",
"twitter": "udondan"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/udondan"
}
],
"awscdkio": {
"twitter": "udondan"
},
"homepage": "https://github.com/udondan/iam-floyd",
"repository": {
"type": "git",
"url": "https://github.com/udondan/iam-floyd.git"
},
"bugs": {
"url": "https://github.com/udondan/iam-floyd/issues"
},
"keywords": [
"aws",
"iam",
"policy",
"iam-floyd"
],
"stability": "experimental",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"jsii": {
"outdir": "dist",
"excludeTypescript": [
"bin/*",
"lib/generator/*",
"test/*",
"**/*CDK*",
"examples/*",
"twitter/*",
"helper/*"
],
"targets": {
"python": {
"distName": "iam-floyd",
"module": "iam_floyd"
}
}
},
"devDependencies": {
"@types/cheerio": "^0.22.23",
"@types/glob": "^8.0.0",
"@types/lodash": "^4.14.165",
"@types/node": "18.11.9",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"aws-sdk": "^2.814.0",
"cheerio": "^1.0.0-rc.3",
"colors": "1.4.0",
"glob": "^8.0.1",
"jsii": "^1.75.0",
"jsii-pacmak": "^1.75.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"ts-morph": "^17.0.1",
"ts-node": "^10.0.0",
"aws-lambda": "^1.0.7",
"typescript": "~5.0.2",
"publib": "^0.2.598"
},
"dependencies": {
"@udondan/common-substrings": "^3.0.2",
"regex-parser": "^2.2.11"
},
"bundleDependencies": [
"@udondan/common-substrings",
"regex-parser"
],
"overrides": {
"colors": "1.4.0"
}
}