-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "logtify-bugsnag",
"version": "1.1.1",
"description": "Bugsnag link chain and adapter for logtify logger",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/index.js",
"lint": "node_modules/.bin/eslint .",
"cover": "CONSOLE_LOGGING=false ./node_modules/.bin/nyc --reporter=lcov node_modules/.bin/_mocha -- test --recursive --timeout=3000",
"test": "npm run lint && npm run cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dial-once/node-logtify-bugsnag.git"
},
"author": "Dial Once",
"license": "MIT",
"bugs": {
"url": "https://github.com/dial-once/node-logtify-bugsnag/issues"
},
"homepage": "https://github.com/dial-once/node-logtify-bugsnag#readme",
"dependencies": {
"bugsnag": "^2.3.1",
"deserialize-error": "0.0.3",
"logtify": ">=1.1.0",
"utils-copy-error": "^1.0.1",
"sinon": "^1.17.6"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"nyc": "^13.0.1",
"mocha": "^5.2.0"
}
}