-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 866 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
46
47
48
{
"name": "neat-stack",
"version": "1.0.1",
"description": "Make a color-coded stack trace from an error",
"repository": "shinnn/neat-stack",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"scripts": {
"pretest": "eslint .",
"test": "nyc node test.js"
},
"files": [
"index.js"
],
"keywords": [
"error",
"format",
"beautify",
"clarify",
"stringify",
"stack",
"trace",
"stacktrace",
"color",
"colored",
"color-coded",
"clean",
"cli-friendly"
],
"dependencies": {
"chalk": "^2.4.1",
"clean-stack": "^2.0.0"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.7.5",
"eslint": "^5.8.0",
"nyc": "^13.1.0",
"nyc-config-common": "^1.0.1",
"tape": "^4.9.1",
"tilde-path": "^3.0.0"
},
"eslintConfig": {
"extends": "@shinnn"
},
"nyc": {
"extends": "nyc-config-common"
}
}