forked from vadimdemedes/patch-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1023 Bytes
/
package.json
File metadata and controls
56 lines (56 loc) · 1023 Bytes
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
{
"name": "patch-console",
"version": "1.0.0",
"description": "Patch console methods to intercept output",
"license": "MIT",
"repository": "vadimdemedes/patch-console",
"author": {
"name": "vdemedes",
"email": "vdemedes@gmail.com",
"url": "https://github.com/vadimdemedes"
},
"main": "build",
"types": "build/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"prepare": "tsc",
"test": "prettier --check src && tsc && xo && ava"
},
"files": [
"build"
],
"keywords": [
"stdout",
"stderr",
"patch",
"console",
"intercept",
"log",
"logs"
],
"devDependencies": {
"@sindresorhus/tsconfig": "^0.7.0",
"@types/node": "^14.0.13",
"ava": "^3.9.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"typescript": "^3.9.5",
"xo": "^0.32.0"
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid"
},
"xo": {
"prettier": true
},
"ava": {
"serial": true
}
}