-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "s3-invalidate-cloudfront-id",
"version": "2.0.0",
"license": "MIT",
"readmeFilename": "README.md",
"description": "invlidate s3 cloudfront id",
"author": "chris <[email protected]>",
"main": "s3-invalidate-cloudfront-id.mjs",
"module": "s3-invalidate-cloudfront-id.mjs",
"type": "module",
"bin": {
"s3-invalidate-cloudfront-id": "s3-invalidate-cloudfront-id.bin.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/iambumblehead/s3-invalidate-cloudfront-id.git"
},
"files": [
"s3-invalidate-cloudfront-id.mjs",
"s3-invalidate-cloudfront-id.bin.mjs"
],
"keywords": [
"cloudfront",
"cloudfront id",
"cloudfrontid",
"invalidate",
"invalidation",
"create-invalidation",
"bucket",
"deploy",
"deployment",
"aws",
"cli",
"s3"
],
"dependencies": {
"@aws-sdk/client-cloudfront": "3.45.0"
},
"devDependencies": {
"ava": "^4.0.0",
"eslint": "^8.6.0",
"esmock": "^1.7.2"
},
"scripts": {
"test": "ava --node-arguments=\"--loader=esmock\" s3-invalidate-cloudfront-id.spec.mjs",
"lint": "eslint s3-invalidate-cloudfront-id.spec.mjs",
"prepare": "npm run lint && npm test"
}
}