forked from functionalone/serverless-iam-roles-per-function
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
82
83
{
"name": "serverless-iam-roles-per-function",
"private": false,
"version": "2.0.2",
"engines": {
"node": ">=6.10.0"
},
"description": "A Serverless plugin to define IAM Role statements as part of the function definition block",
"main": "dist/lib/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/serverless-iam-roles-per-function"
},
"keywords": [
"aws",
"lambda",
"aws lambda",
"serverless",
"policy",
"role",
"iam",
"custom",
"permissions",
"security"
],
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@serverless/enterprise-plugin": "^1.3.10",
"@types/chai": "^4.2.0",
"@types/lodash": "^4.14.138",
"@types/mocha": "^5.2.7",
"@types/node": "^6.14.7",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"mocha": "^6.2.0",
"npm-get-version": "^1.0.2",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"serverless": "^1.51.0",
"source-map-support": "^0.5.13",
"standard-version": "^7.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
},
"files": [
"dist/index.*",
"dist/lib/**",
"src/",
"*.md"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/lib/**"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"text"
],
"all": true
}
}