-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "ember-cli-deploy-s3-index",
"version": "4.0.3",
"description": "Ember CLI Deploy plugin to deploy ember-cli's bootstrap index file to S3.",
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin"
],
"repository": "https://github.com/ember-cli-deploy/ember-cli-deploy-s3-index",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"release": "release-it",
"test": "node tests/runner.js && ./node_modules/.bin/eslint index.js lib/* tests/**/*.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.385.0",
"@aws-sdk/credential-providers": "^3.391.0",
"core-object": "^3.0.0",
"ember-cli-deploy-plugin": "^0.2.9",
"mime-types": "^2.1.27",
"rsvp": "^4.8.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ember-cli": "~3.18.0",
"eslint": "^7.0.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0"
},
"engines": {
"node": "14.* || 16.* || 18.* || >= 20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
}
}
}