This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
generated from boneskull/boneskull-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.38 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "buggin",
"version": "0.1.7",
"description": "help your users report unexpected errors originating in your buggy app",
"main": "src/index.js",
"scripts": {
"posttest": "markdownlint \"*.md\" && eslint .",
"test": "nyc mocha \"test/**/*.spec.js\"",
"release": "standard-version -a"
},
"repository": {
"type": "git",
"url": "/~https://github.com/boneskull/buggin"
},
"bugs": {
"url": "/~https://github.com/boneskull/buggin/issues"
},
"keywords": [
"error",
"exception",
"bug",
"issue",
"ticket",
"report",
"github",
"cli",
"prompt",
"bugs",
"uncaught"
],
"author": "Christopher Hiller <boneskull@boneskull.com> (https://boneskull.com/)",
"license": "Apache-2.0",
"engines": {
"node": ">=8"
},
"files": [
"src/**/*.js",
"assets/screenshot.png",
"assets/buggin-logo-64.png",
"types/*.d.ts"
],
"dependencies": {
"ansi-colors": "^4.1.1",
"ansi-escapes": "^4.3.0",
"find-up": "^4.1.0",
"is-email-like": "^1.0.0",
"node-emoji": "^1.10.0",
"normalize-package-data": "^2.5.0",
"read-pkg": "^5.2.0",
"supports-color": "^7.1.0",
"supports-hyperlinks": "^2.0.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.20",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"execa": "^3.4.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"markdownlint-cli": "^0.19.0",
"mocha": "^6.2.2",
"node-version": "^2.0.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"standard-version": "^7.0.1",
"type-fest": "^0.8.1",
"typescript": "^3.8.0-dev.20191217",
"unexpected": "^11.10.0",
"unexpected-sinon": "^10.11.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{yml,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"endOfLine": "auto"
},
"types": "types",
"nyc": {
"include": "src"
}
}