-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "serverless-s3-cleaner",
"version": "2.0.3",
"description": "Serverless Framework plugin that empties S3 buckets before removing a stack",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run lint",
"build": "tsc --b tsconfig.app.json",
"lint": "eslint \"**/*.ts\" --ignore-path .gitignore",
"clean": "rimraf out-tsc",
"pretest:build": "npm run clean",
"test:build": "tsc --b tsconfig.spec.json",
"test:exec": "jasmine --config=jasmine.json",
"test": "npm run test:build && nyc npm run test:exec",
"test:cov": "npm run test:build && nyc --reporter=html --reporter=text-summary npm run test:exec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coyoteecd/serverless-s3-cleaner.git"
},
"keywords": [
"serverless",
"serverless-plugin",
"aws",
"s3",
"bucket",
"remover",
"cleaner"
],
"author": "coyoteecd",
"license": "MIT",
"bugs": {
"url": "https://github.com/coyoteecd/serverless-s3-cleaner/issues"
},
"homepage": "https://github.com/coyoteecd/serverless-s3-cleaner#readme",
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/node": "^16.18.70",
"@types/prompt": "^1.1.8",
"@types/serverless": "^3.12.20",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"ajv": "^8.12.0",
"aws-sdk": "^2.1531.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jasmine": "^5.1.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"serverless": "^3.38.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"serverless": "^3.0.0"
},
"dependencies": {
"prompt": "^1.3.0"
}
}