forked from quorrajs/Ouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 904 Bytes
/
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
{
"name": "ouch",
"version": "2.0.1",
"description": "Javascript error handling for cool kids",
"main": "Ouch.js",
"types": "Ouch.d.ts",
"scripts": {
"test": "mocha",
"dev": "mocha --watch",
"start": "node Ouch.js"
},
"repository": {
"type": "git",
"url": "https://github.com/quorrajs/Ouch"
},
"keywords": [
"error",
"handler",
"exception",
"pretty",
"ouch",
"beautify",
"whoops"
],
"author": "Harish Anchu <harishanchu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/quorrajs/Ouch/issues"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"@positron/stack-trace": "1.0.0",
"ejs": "^3.1.7",
"escape-html": "^1.0.1",
"lodash": "^4.17.10"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.2",
"mocha": "^5.2.0",
"should": "^13.2.3",
"sinon": "^6.1.5"
}
}