-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
37 lines (37 loc) · 1 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
{
"name": "serverless-prune-plugin",
"version": "2.1.0",
"description": "Serverless plugin to delete old versions of deployed functions from AWS",
"author": "Clay Gregory <[email protected]> (https://claygregory.com/)",
"keywords": [
"serverless",
"serverless-plugin",
"aws",
"aws-lambda",
"lambda"
],
"repository": "claygregory/serverless-prune-plugin",
"homepage": "https://github.com/claygregory/serverless-prune-plugin",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint ./index.js",
"test": "mocha",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"bluebird": "^3.7.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.2.0",
"istanbul": "^0.4.5",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"sinon": "^12.0.1"
},
"peerDependencies": {
"serverless": "1.x || 2.x || 3.x || 4.x"
}
}