-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 1.89 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
{
"name": "aws-iam-policy-tool",
"version": "0.7.0",
"description": "AWS IAM role/policy management cli tool",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"awsiamtool": "./bin/awsiamtool"
},
"scripts": {
"build": "tsc",
"test": "ts-mocha test/**/*.test.ts --timeout 20000",
"lint": "eslint --fix \"src/**/*.ts\"",
"ci_test": "nyc ts-mocha test/**/*.test.ts --timeout 20000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"AWS",
"IAM"
],
"author": "Toshimitsu Takahashi",
"license": "MIT",
"dependencies": {
"@tilfin/stream-utils": "^0.7.0",
"aws-sdk": "^2.481.0",
"commander": "^2.20.0",
"json-diff": "^0.5.4",
"promised-lifestream": "^0.7.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"del": "^4.1.1",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"extend-aws-error": "^0.5.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"ts-mocha": "^6.0.0",
"typescript": "^3.5.2"
},
"engines": {
"node": ">=8.10"
},
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tilfin/aws-iam-policy-tool.git"
},
"bugs": {
"url": "https://github.com/tilfin/aws-iam-policy-tool/issues"
},
"homepage": "https://github.com/tilfin/aws-iam-policy-tool#readme",
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html",
"text"
],
"sourceMap":true,
"all": true
}
}