forked from EmberExperts/ember-cli-deploy-sentry-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "ember-cli-deploy-sentry-cli",
"version": "3.1.0",
"description": "Sentry CLI integration for ember-cli-deploy",
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin",
"sentry",
"ci"
],
"repository": "https://github.com/Exelord/ember-cli-deploy-sentry-cli",
"license": "MIT",
"author": "Exelord",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"lint": "eslint .",
"test": "mocha tests/unit/index-nodetest.js",
"release": "release-it"
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "v${version}",
"pushArgs": "--no-verify"
},
"github": {
"release": true
},
"hooks": {
"before:init": "npm run lint && npm test"
}
},
"peerDependencies": {
"ember-cli-deploy": "^1.0.2"
},
"dependencies": {
"@sentry/cli": "^2.20.7",
"ember-cli-deploy-plugin": "^0.2.9",
"ember-cli-deploy-revision-data": "^3.0.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.56.0",
"mocha": "^9.1.3",
"release-it": "^17.6.0",
"sinon": "^11.1.2"
},
"engines": {
"node": "12.* || 14.* || >= 16.*"
}
}