-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
{
"name": "serverless-plugin-custom-roles",
"version": "3.1.1",
"description": "A Serverless plugin that makes creation of per function IAM roles easier",
"repository": {
"type": "git",
"url": "https://github.com/AntonBazhal/serverless-plugin-custom-roles.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"aws",
"aws lambda",
"function",
"lambda",
"serverless",
"plugin",
"permissions",
"security",
"custom",
"iam",
"role"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "nyc --reporter=lcov --reporter=text mocha",
"posttest": "npm run lint"
},
"author": {
"name": "Anton Bazhal",
"email": "[email protected]",
"url": "https://github.com/AntonBazhal"
},
"contributors": [
{
"name": "Paul Cruse III",
"url": "https://github.com/paulcruse3"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"sinon": "^12.0.1"
},
"dependencies": {
"lodash.set": "^4.3.2",
"semver": "^7.3.5"
}
}