-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.52 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
65
66
67
68
69
70
71
{
"name": "adonisjs-bugsnag",
"version": "0.2.1",
"description": "BugSnag addon/plugin package for AdonisJS 4.0+ apps",
"main": "index.js",
"files": [
"src",
"config",
"providers",
"instructions.js",
"instructions.md"
],
"directories": {
"test": "test"
},
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"test": "nyc node japaFile.js",
"test:win": "node ./node_modules/japa-cli/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"errors",
"reporting",
"API",
"adonis",
"bugsnag",
"adonisjs",
"adonis-framework"
],
"author": "StitchNG <stitchnig@gmail.com> (https://twitter.com/stitchappn)",
"license": "MIT",
"nyc": {
"exclude": [
"test"
]
},
"standard": {
"globals": [
"use",
"test"
]
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"@bugsnag/js": "^6.4.3",
"debug": "^3.1.2"
},
"peerDependencies": {
"adonisjs-extensions": "^0.0.11"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/sink": "^1.0.6",
"coveralls": "^3.0.2",
"japa": "^2.0.5",
"japa-cli": "^1.0.1",
"nyc": "^13.0.1",
"semver": "^5.5.0",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/stitchng/adonis-bugsnag.git"
},
"bugs": {
"url": "https://github.com/stitchng/adonis-bugsnag/issues"
},
"homepage": "https://github.com/stitchng/adonis-bugsnag#readme"
}