-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 2.07 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
{
"name": "aws-least-privilege",
"private": false,
"version": "0.1.12",
"engines": {
"node": ">=6.10.0"
},
"description": "Scan xray traces to extract the proper minimal permissions needed for an application role.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"test-bare": "npm run compile && mocha ./dist/test/**/*.test.js",
"test": "nyc mocha --require ts-node/register --require source-map-support/register ./src/test/**/*.test.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"compile": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run clean && npm run compile",
"release": "standard-version"
},
"author": "Functional One, Ltd.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/functionalone/aws-least-privilege"
},
"keywords": [
"aws",
"aws lambda",
"x-ray",
"least privilege"
],
"dependencies": {
"aws-sdk": "^2.307.0",
"bluebird": "^3.5.1",
"commander": "^2.17.1",
"lodash": "^4.17.10",
"winston": "^2.4.4"
},
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/node": "^6.0.117",
"@types/winston": "^2.4.4",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9",
"standard-version": "^4.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"files": [
"dist/index.*",
"dist/lib/**",
"dist/bin/**",
"src/",
"*.md"
],
"bin": {
"xray-privilege-scan": "./dist/bin/xray-privilege-scan.js"
},
"typescript": {
"definition": "dist/index.d.ts"
},
"typings": "dist/index.d.ts",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/lib/**"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"text"
],
"all": true
}
}