-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "@grimen/mybad",
"version": "0.3.2",
"description": "My friendly error base class - for Node/JavaScript.",
"keywords": [
"error",
"errors",
"baseclass",
"meta",
"debug",
"inspector",
"pretty",
"color",
"colors",
"detailed",
"stacktrace"
],
"repository": {
"type": "git",
"url": "git+https://github.com/grimen/js-mybad.git"
},
"bugs": {
"url": "https://github.com/grimen/js-mybad/issues"
},
"homepage": "https://github.com/grimen/js-mybad#readme",
"author": "Jonas Grimfelt <[email protected]> (https://github.com/grimen)",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npx jest",
"test-ci": "npx jest --runInBand --forceExit --detectOpenHandles --coverage",
"test-dev": "npx jest --watch",
"validate": "npx eslint \"**/*.js\"",
"release": "npx np",
"coverage": "npx codecov"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"chalk": "^4.1.0",
"es6-error": "^4.1.1",
"util-deprecate": "^1.0.2",
"util-inspect": "^0.1.8"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^26.6.3",
"jest-tobetype": "^1.2.3",
"np": "^7.4.0",
"strip-ansi": "^6.0.0"
},
"jest": {
"bail": true,
"verbose": true,
"testRegex": ".*\\.test\\.js",
"testEnvironment": "node"
}
}