-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "js-complexity-analysis",
"displayName": "JS Complexity Analysis",
"description": "Produce a complexity analysis report of your JS project",
"version": "2.0.0",
"publisher": "TomiTurtiainen",
"engines": {
"vscode": "^1.5.1"
},
"scripts": {
"lint": "eslint --ext .js ./src"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:complexityAnalysis.analyseFile",
"onCommand:complexityAnalysis.analyseProject",
"onLanguage:javascript"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "complexityAnalysis.analyseFile",
"title": "File complexity analysis"
},
{
"command": "complexityAnalysis.analyseProject",
"title": "Project complexity analysis"
}
],
"configuration": {
"type": "object",
"title": "Complexity analysis configuration",
"properties": {
"complexityAnalysis.include": {
"type": "array",
"default": [],
"description": "An array of files/folders that should be included by the parser. Glob patterns are accepted (eg. src/**/*.js)"
},
"complexityAnalysis.exclude": {
"type": "array",
"default": [],
"description": "An array of files/folders that should be ignored by the parser. Glob patterns are accepted (eg. test/**/*.js)"
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/tomi/vscode-js-complexity-analysis.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/tomi/vscode-js-complexity-analysis/issues"
},
"homepage": "https://github.com/tomi/vscode-js-complexity-analysis",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"devDependencies": {
"eslint": "^8.16.0"
},
"dependencies": {
"dot": "1.1.3",
"es6-promisify": "7.0.0",
"lodash": "^4.17.21",
"typhonjs-escomplex": "0.1.0"
}
}