-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.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
{
"name": "iam-policy-optimizer",
"version": "1.2.0",
"description": "Reduce AWS IAM policy to the smaller form",
"main": "lib/index.js",
"repository": "https://github.com/loopingz/iam-policy-optimizer",
"author": "Remi Cattiau <[email protected]>",
"license": "MIT",
"bin": {
"iam-policy-optimizer": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"pretest": "tsc",
"test": "nyc mocha --recursive --exit --timeout=100000 -r ts-node/register src/**/*.spec.ts",
"editor-start": "yarn --cwd editor/ start",
"editor-build": "yarn --cwd editor/ build",
"release": "standard-version"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"report-dir": "./reports",
"reporter": [
"html",
"lcov",
"json"
],
"exclude": [
"**/*.spec.ts"
]
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"mocha": "^9.1.2",
"mocha-typescript": "^1.1.17",
"nyc": "^15.1.0",
"rimraf": "^3.0.0",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@aws-sdk/client-iam": "^3.85.0",
"@types/node": "^16.10.2",
"yargs": "^17.2.1"
}
}