-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
62
63
64
{
"name": "epicfail",
"description": "Better error output for Node.js CLI apps",
"version": "3.0.0",
"author": "Yasuaki Uechi <[email protected]> (https://uechi.io)",
"type": "module",
"scripts": {
"build": "microbundle --target node",
"clean": "shx rm -rf lib tests/**/node_modules",
"dev": "microbundle watch --target node",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "jest",
"toc": "mdmod README.md"
},
"types": "./lib/index.d.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.module.js",
"files": [
"lib"
],
"dependencies": {
"chalk": "^4.1.2",
"envinfo": "^7.8.1",
"node-fetch": "^2.6.1",
"pkg-up": "^3.1.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.8",
"@types/node-fetch": "^2.5.12",
"esm": "^3.2.25",
"execa": "^5.1.1",
"jest": "^27.1.0",
"mdmod": "^1.0.0",
"mdmod-plugin-toc": "^0.1.1",
"microbundle": "^0.13.3",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"release-it": "^14.11.5",
"shx": "^0.3.3",
"strip-ansi": "^7.0.0",
"terminal-link": "^3.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsup": "^4.14.0",
"typescript": "^4.4.2"
},
"homepage": "https://github.com/uetchy/epicfail",
"repository": {
"type": "git",
"url": "https://github.com/uetchy/epicfail.git"
},
"bugs": {
"url": "https://github.com/uetchy/epicfail/issues"
},
"license": "Apache-2.0",
"keywords": [
"errors"
],
"source": "src/index.ts"
}