-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.84 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sentry-winston-logger",
"version": "0.1.5",
"description": "Winston based sentry logger",
"main": "build/index.js",
"scripts": {
"test": "babel-tape-runner src/__test__/*.js | tap-spec",
"build": "babel src --ignore **/__test__/**.js -d build",
"coverage": "cross-env NODE_ENV=test nyc npm test"
},
"author": "Francisco Alejandro Jurado",
"license": "MIT",
"dependencies": {
"raven": "^2.6.3",
"winston": "2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-tape-runner": "^2.0.1",
"cross-env": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"istanbul": "^0.4.5",
"istanbul-reports": "^1.3.0",
"nyc": "^11.8.0",
"proxyquire": "1.7.11",
"raven": "^2.6.3",
"sinon": "2.2.0",
"tap-spec": "^4.1.1",
"tap-xunit": "1.7.0",
"tape": "4.6.3",
"tape-istanbul": "^1.2.0",
"winston": "2.3.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"eslintConfig": {
"ecmaFeatures": {
"modules": true
},
"env": {
"es6": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8
},
"rules": {
"promise/prefer-await-to-then": 1,
"promise/avoid-new": 0,
"indent": 0
}
},
"nyc": {
"require": [
"babel-register"
],
"exclude": [
"**/__test__"
],
"reporter": [
"html",
"text"
],
"cache": false,
"sourceMap": false,
"instrument": false
}
}