-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
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
{
"name": "ember-cli-deploy-cloudfront",
"version": "6.0.0",
"description": "An ember-cli-deploy plugin to invalidate CloudFront cache.",
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin"
],
"license": "MIT",
"author": "Kevin Pfefferle",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/kpfefferle/ember-cli-deploy-cloudfront",
"scripts": {
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"test": "mocha 'tests/**/*-test.mjs'"
},
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.855.0",
"@aws-sdk/credential-providers": "^3.855.0",
"core-object": "^3.1.5",
"ember-cli-deploy-plugin": "~0.2.9",
"rsvp": "^4.8.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.5",
"glob": "^13.0.0",
"globals": "^17.4.0",
"mocha": "^11.0.1",
"prettier": "^3.8.1"
},
"engines": {
"node": "16.* || 18.* || >= 20"
},
"ember-addon": {},
"volta": {
"node": "20.19.1"
}
}