-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
129 lines (129 loc) · 3.45 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "coc-jest",
"version": "1.1.5",
"description": "jest extension for coc.nvim",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "webpack",
"prepare": "webpack"
},
"engines": {
"coc": ">=0.0.79"
},
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neoclide/coc-jest.git"
},
"keywords": [
"coc.nvim",
"jest"
],
"author": "chemzqm@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/neoclide/coc-jest/issues"
},
"homepage": "https://github.com/neoclide/coc-jest#readme",
"contributes": {
"configuration": {
"type": "object",
"title": "Jest",
"properties": {
"jest.terminalPosition": {
"type": "string",
"description": "Position of the jest terminal window",
"default": "right",
"enum": [
"bottom",
"right"
]
},
"jest.watch": {
"type": "boolean",
"default": true,
"description": "Watch files for changes and rerun tests related to changed files"
},
"jest.detectLeaks": {
"type": "boolean",
"default": false,
"description": "Detect memory leaks in tests"
},
"jest.watchman": {
"type": "boolean",
"default": false,
"description": "Use watchman for file crawling"
},
"jest.detectOpenHandles": {
"type": "boolean",
"default": false,
"description": "Print out remaining open handles preventing jest from exiting"
},
"jest.forceExit": {
"type": "boolean",
"default": false,
"description": "Force jest to exit after all tests have completed running"
},
"jest.noStackTrace": {
"type": "boolean",
"default": false,
"description": "Disables stack trace in test results output"
},
"jest.configFileName": {
"type": "string",
"default": "jest.config.js",
"description": "Jest configuration file"
},
"jest.customFlags": {
"type": "array",
"description": "Custom additional flags which will be passed to the jest command",
"default": [],
"items": {
"type": "string",
"description": "A flag, without the '--'. For example: 'runInBand' or 'useStderr'",
"default": ""
}
},
"jest.binCommand": {
"type": "string",
"description": "Optionally specify your runner command for jest. For example, 'yarn test'",
"default": ""
}
}
},
"commands": [
{
"title": "Run jest for current project",
"category": "Jest",
"command": "jest.projectTest"
},
{
"title": "Run jest for current file",
"category": "Jest",
"command": "jest.fileTest"
},
{
"title": "Run jest init in vim's CWD",
"category": "Jest",
"command": "jest.init"
}
]
},
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "^13.11.1",
"@types/which": "^1.3.2",
"coc.nvim": "^0.0.79-next.11",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.2",
"tslint": "^6.1.1",
"typescript": "^4.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"which": "^2.0.2"
},
"dependencies": {}
}