-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "ember-cli-deploy-cloudformation",
"version": "1.0.0",
"description": "An ember-cli-deploy plugin to create/update an AWS CloudFormation stack",
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin"
],
"repository": "https://github.com/kaliber5/ember-cli-deploy-cloudformation",
"license": "MIT",
"author": "Simon Ihmig <[email protected]>",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "node tests/runner.js && ./node_modules/.bin/eslint index.js tests/**/*.js"
},
"dependencies": {
"aws-sdk": "^2.958.0",
"ember-cli-deploy-plugin": "^0.2.9"
},
"devDependencies": {
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"ember-cli": "4.6.0",
"eslint": "8.22.0",
"glob": "8.0.3",
"mocha": "10.0.0",
"release-it": "14.14.3",
"release-it-lerna-changelog": "4.0.1",
"sinon": "14.0.0",
"sinon-chai": "3.7.0"
},
"engines": {
"node": "14.x || >= 16"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}