-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "aws-iam-managed-policies",
"version": "0.0.302",
"description": "Provides AWS IAM Managed Policies historical data as a convenient npm package that can be used in other OSS projects.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"gather-managed-policies": "ts-node --transpile-only --log-error process/gatherManagedPolicies.ts",
"backfill-managed-policies": "ts-node --transpile-only --log-error process/backfillManagedPoliciesHistory.ts",
"build": "rm -rf dist/ && tsc --build src/",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobilg/aws-iam-managed-policies.git"
},
"keywords": [
"aws",
"iam",
"data",
"cloud",
"managed",
"policies",
"policy"
],
"author": "TobiLG <tobilg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tobilg/aws-iam-managed-policies/issues"
},
"homepage": "https://github.com/tobilg/aws-iam-managed-policies#readme",
"devDependencies": {
"@types/node": "^20.4.9",
"aws-sdk": "^2.1432.0",
"jsdoc": "^4.0.2",
"jsdoc-fresh": "^3.0.0",
"mkdirp": "^3.0.1",
"p-limit": "3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"deep-object-diff": "^1.1.9"
}
}