-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "ember-cli-deploy-cloudfront",
"version": "5.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": "node tests/runner.js"
},
"dependencies": {
"aws-sdk": "^2.458.0",
"core-object": "^3.1.5",
"ember-cli-deploy-plugin": "~0.2.9",
"rsvp": "^4.8.3",
"uuid": "^11.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^10.2.1",
"mocha": "^11.0.1",
"prettier": "^2.2.1"
},
"engines": {
"node": "16.* || 18.* || >= 20"
},
"ember-addon": {},
"volta": {
"node": "18.18.2",
"yarn": "1.22.19"
}
}