-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "good-sentry",
"version": "2.4.1",
"repository": {
"type": "git",
"url": "git://github.com/jsynowiec/good-sentry"
},
"description": "Sentry broadcasting for good process monitor",
"keywords": [
"hapi",
"hapijs",
"good",
"logging",
"sentry",
"raven"
],
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib coverage",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"prebuild": "mkdir -p lib",
"build": "babel src/index.js --out-file lib/index.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "~9.0.0",
"babel-jest": "~23.4.2",
"babel-preset-es2015": "~6.24.1",
"eslint": "~5.4.0",
"eslint-config-airbnb-base": "~13.1.0",
"eslint-config-prettier": "~3.0.1",
"eslint-plugin-import": "~2.14.0",
"jest": "~23.5.0",
"prettier": "1.14.2"
},
"author": "Jakub Synowiec",
"engines": {
"node": ">=4.x.x"
},
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"dependencies": {
"hoek": "~5.0.4",
"raven": "~2.6.4"
}
}