-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
179 lines (179 loc) · 5.41 KB
/
package.json
File metadata and controls
179 lines (179 loc) · 5.41 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"author": {
"name": "Robert Lindley",
"url": "https://coderrob.com"
},
"bugs": {
"url": "https://github.com/Coderrob/barrel-roll/issues"
},
"c8": {
"branches": 95,
"check-coverage": true,
"exclude": [
"dist/test/**",
"dist/src/test/**",
"dist/**/index.js",
"dist/**/*.test.js",
"dist/**/*.d.ts",
"node_modules/**",
"src/**/index.ts",
"src/test/**",
"src/**/*.test.ts",
"src/**/*.d.ts"
],
"functions": 95,
"include": [
"dist/**/*.js"
],
"lines": 95,
"reporter": [
"text",
"lcov",
"html",
"json-summary"
],
"statements": 95
},
"categories": [
"Programming Languages"
],
"contributes": {
"commands": [
{
"command": "barrel-roll.generateBarrel",
"title": "Barrel Roll Directory"
},
{
"command": "barrel-roll.generateBarrelRecursive",
"title": "Barrel Roll Directory (Recursive)"
}
],
"menus": {
"commandPalette": [
{
"command": "barrel-roll.generateBarrel",
"when": "true"
},
{
"command": "barrel-roll.generateBarrelRecursive",
"when": "true"
}
],
"explorer/context": [
{
"group": "z_commands",
"submenu": "generateBarrel",
"when": "explorerResourceIsFolder"
}
],
"generateBarrel": [
{
"command": "barrel-roll.generateBarrel",
"group": "navigation@1",
"when": "explorerResourceIsFolder"
},
{
"command": "barrel-roll.generateBarrelRecursive",
"group": "navigation@2",
"when": "explorerResourceIsFolder"
}
]
},
"submenus": [
{
"id": "generateBarrel",
"label": "Generate Barrel"
}
]
},
"description": "A Visual Studio Code extension to automatically export types, functions, constants, and classes through barrel files",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^22.x",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vscode/test-electron": "^2.3.4",
"c8": "^10.1.3",
"cross-env": "^10.1.0",
"depcheck": "^1.4.7",
"dependency-cruiser": "^17.1.0",
"eslint": "^9.21.0",
"eslint-import-resolver-typescript": "^3.8.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.4.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unused-imports": "^4.2.0",
"glob": "^10.5.0",
"jscodeshift": "^17.3.0",
"jscpd": "^4.0.5",
"madge": "^8.0.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.5.0",
"ts-loader": "^9.4.4",
"ts-morph": "^27.0.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"displayName": "Barrel Roll",
"engines": {
"vscode": "^1.80.0"
},
"homepage": "https://github.com/Coderrob/barrel-roll#readme",
"icon": "public/img/barrel-roll-icon.png",
"keywords": [
"barrel",
"barrel file",
"extension",
"typescript",
"vscode"
],
"license": "Apache-2.0",
"main": "./dist/extension.js",
"name": "barrel-roll",
"publisher": "coderrob",
"repository": {
"type": "git",
"url": "https://github.com/Coderrob/barrel-roll.git"
},
"scripts": {
"compile": "webpack",
"compile-tests": "tsc -p tsconfig.test-suite.json",
"coverage": "npm run pretest && c8 node scripts/run-tests.cjs && npm run coverage:badge",
"coverage:badge": "make-coverage-badge --output-path ./badges/coverage.svg",
"coverage:check": "c8 check-coverage",
"deps:check": "node ./scripts/run-depcheck.cjs",
"duplication": "jscpd src",
"ext:build": "npm run compile",
"ext:install": "node scripts/install-extension.cjs",
"ext:package": "npx @vscode/vsce package",
"ext:reinstall": "npm run ext:package && npm run ext:install",
"fix:instanceof-error": "npx jscodeshift -t scripts/codemods/fix-instanceof-error.cjs src --extensions=ts,tsx --parser=ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "prettier --check . && eslint . && npm run deps:check",
"lint:deps": "depcruise src --config .dependency-cruiser.cjs",
"lint:fix": "prettier --write . && eslint --fix .",
"madge": "madge --circular --orphans src",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"quality": "npm run lint && npm run duplication && npm run madge",
"release:minor": "npm run version:minor && npm run ext:reinstall",
"release:patch": "npm run version:patch && npm run ext:reinstall",
"test": "node scripts/run-tests.cjs",
"test:unit": "npm run compile-tests && npm run compile && node scripts/run-tests.cjs",
"test:vscode": "npm run compile-tests && node ./dist/test/runTest.js",
"typecheck": "tsc --noEmit",
"version:minor": "npm version minor --no-git-tag-version",
"version:patch": "npm version patch --no-git-tag-version",
"vscode:prepublish": "npm run package",
"watch": "webpack --watch",
"watch-tests": "tsc -p . -w --outDir dist"
},
"version": "1.1.1"
}