-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.09 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
{
"name": "yarp-boom",
"version": "2.0.0",
"description": "Throw Boom objects when your Yarps fail.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint . --fix",
"test": "mocha",
"posttest": "eslint .",
"test-cov": "nyc mocha"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vinli/yarp-boom.git"
},
"author": "Vinli Developers <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinli/yarp-boom/issues"
},
"homepage": "https://github.com/vinli/yarp-boom#readme",
"dependencies": {
"boom": "^7.1.1",
"yarp": "^1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-vinli": "^5.1.2",
"eslint-plugin-mocha": "^4.4.0",
"mocha": "^7.1.1",
"nock": "^9.0.8",
"nyc": "^15.0.1",
"pre-commit": "^1.1.3"
},
"directories": {
"test": "test"
},
"keywords": [
"request",
"http",
"rest",
"promise",
"q",
"yarp",
"boom"
],
"engines": {
"node": ">=6"
}
}