-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
50 lines (50 loc) · 1.76 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
{
"name": "@databricks/databricks-vscode",
"version": "2.5.0",
"private": true,
"workspaces": [
"packages/*"
],
"installConfig": {
"hoistingLimits": "dependencies"
},
"engines": {
"node": ">=16.0",
"yarn": ">=3.2.0"
},
"scripts": {
"install:sdk": "yarn fetch:sdk && chmod a+x scripts/install_sdk.sh && scripts/install_sdk.sh",
"fetch:sdk": "rm -rf vendor && mkdir vendor && gh release download -R databricks/databricks-sdk-js v0.7.0 -p '*.tgz' && mv *.tgz vendor/databricks-sdk.tgz",
"test": "yarn workspaces foreach run test",
"test:integ": "yarn workspaces foreach run test:integ",
"build": "yarn workspaces foreach run build",
"clean": "yarn workspaces foreach run clean",
"fix": "yarn workspaces foreach run fix",
"conventional-changelog": "conventional-changelog",
"generate-notice": "yarn workspaces foreach run generate-notice"
},
"repository": {
"type": "git",
"url": "git+https://github.com/databricks/databricks-vscode.git"
},
"license": "LicenseRef-LICENSE",
"bugs": {
"url": "https://github.com/databricks/databricks-vscode/issues"
},
"homepage": "https://github.com/databricks/databricks-vscode#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"ts-mockito": "^2.6.1",
"typescript": "^5.3.3"
},
"resolutions": {
"json5": "2.2.2"
}
}