-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.27 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
{
"name": "iam-policy-generator",
"version": "2.0.0",
"description": "A simple library to be used to generate IAM policies.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --runInBand",
"check": "eslint .",
"clean": "rm -rf dist",
"cover": "jest --collectCoverage --runInBand --coverageReporters=text-lcov | codecov",
"compile": "npm run clean && tsc",
"fix": "eslint . --fix",
"ci": "npm run clean && npm install && npm run fix && npm run cover",
"generate": "npx ts-node ./src/generator/PolicyGenerator.ts && npm run fix",
"prepare": "npm run compile",
"prepublish": "npm run clean && npm run compile"
},
"author": {
"name": "Luca Bianchi",
"url": "https://github.com/aletheia"
},
"repository": {
"url": "https://github.com/aletheia/iam-policy-generator.git"
},
"license": "MIT",
"dependencies": {
"@aws-cdk/aws-iam": "^1.186.0",
"axios": "^1.2.2",
"lodash.camelcase": "^4.3.0",
"lodash.capitalize": "^4.2.1",
"lodash.foreach": "^4.5.0",
"lodash.map": "^4.6.0",
"lodash.replace": "^4.1.4",
"lodash.snakecase": "^4.1.1",
"lodash.toupper": "^4.1.2",
"node-fetch": "^3.3.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@aws-cdk/aws-dax": "^1.186.0",
"@aws-cdk/aws-dynamodb": "^1.186.0",
"@aws-cdk/aws-ec2": "^1.186.0",
"@aws-cdk/aws-lambda": "^1.186.0",
"@aws-cdk/aws-lambda-nodejs": "^1.186.0",
"@aws-cdk/aws-s3": "^1.186.0",
"@aws-cdk/core": "^1.186.0",
"@types/axios": "^0.14.0",
"@types/jest": "^29.2.4",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.capitalize": "^4.2.7",
"@types/lodash.foreach": "^4.5.7",
"@types/lodash.replace": "^4.1.7",
"@types/lodash.snakecase": "^4.1.7",
"@types/lodash.toupper": "^4.1.7",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"bufferutil": "^4.0.7",
"canvas": "^2.11.0",
"codecov": "^3.8.3",
"eslint": "^8.30.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "29.3.1",
"jsdom": "^20.0.3",
"parcel": "2.8.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"utf-8-validate": "^5.0.10"
}
}