-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "handle-errors",
"version": "1.0.0",
"description": "Handling/creating hybrid errors. Hybrid middleware between callbacks and throws. Helpful util for modules that have hybrid APIs and want when they use promises, directly to throw the errors; when use callbacks to pass errors to first argument of this callback.",
"scripts": {
"lint": "jshint index.js && jscs index.js --reporter inline",
"test": "mocha",
"test-cov": "istanbul cover _mocha",
"test-travis": "istanbul cover _mocha --report lcovonly"
},
"author": {
"name": "Charlike Make Reagent",
"email": "mameto_100@mail.bg",
"url": "https://github.com/tunnckoCore"
},
"repository": {
"type": "git",
"url": "git://github.com/hybridables/handle-errors.git"
},
"keywords": [
"api",
"apis",
"aplus",
"callback",
"callbacks",
"catch",
"cb",
"err",
"error",
"errors",
"handle",
"hybrid",
"hybridify",
"promise",
"promises",
"promises-aplus",
"then",
"throw"
],
"license": {
"type": "MIT",
"url": "https://github.com/hybridables/handle-errors/blob/master/license.md"
},
"dependencies": {},
"devDependencies": {
"istanbul-harmony": "^0.3.1",
"mocha": "*",
"mocha-lcov-reporter": "^1.2.0"
}
}