-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.75 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
60
61
62
63
64
{
"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"
],
"repository": "https://github.com/IcarusWorks/ember-cli-deploy-bugsnag",
"license": "MIT",
"author": "Jordan Morano <[email protected]>",
"contributors": [
"Patrick Berkeley <[email protected]>"
],
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build --environment=production",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"start": "ember serve",
"test": "npm-run-all lint test:*",
"test:node": "node tests/runner.js"
},
"dependencies": {
"ember-cli-babel": "^7.26.10",
"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": {
"@embroider/test-setup": "^0.48.1",
"babel-eslint": "^10.1.0",
"broccoli-asset-rev": "^3.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"ember-cli": "~3.28.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-ember": "^10.5.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}