forked from IcarusWorks/ember-cli-deploy-bugsnag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
49
50
51
52
{
"name": "ember-cli-deploy-bugsnag",
"version": "0.2.0",
"description": "An ember-cli-deploy plugin to upload sourcemaps to Bugsnag.",
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin",
"bugsnag",
"sourcemaps"
],
"license": "MIT",
"author": "Jordan Morano <jordan@icarus.works>",
"contributors": [
"Patrick Berkeley <patrick@icarus.works>"
],
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/IcarusWorks/ember-cli-deploy-bugsnag",
"scripts": {
"build": "ember build",
"start": "ember server",
"test": "yarn eslint ."
},
"dependencies": {
"ember-cli-babel": "^6.16.0",
"ember-cli-deploy-plugin": "^0.2.9",
"path": "^0.12.7",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rsvp": "^4.8.4"
},
"devDependencies": {
"ember-cli": "3.4.3",
"ember-cli-eslint": "^4.2.3",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-ember": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"prettier": "^1.14.3"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"versionCompatibility": {
"ember": ">=2.7.3"
}
}
}