forked from mtxr/vscode-sqltools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 2.02 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
{
"name": "sqltools",
"displayName": "SQLTools - Database tools",
"description": "Database management done right. Connection explorer, query runner, intellisense, bookmarks, query history. Feel like a database hero!",
"version": "0.21.7",
"publisher": "mtxr",
"license": "MIT",
"main": "./dist/extension.js",
"homepage": "https://vscode-sqltools.mteixeira.dev/",
"repository": {
"url": "https://github.com/mtxr/vscode-sqltools.git",
"type": "git"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"add-driver": "node ./tools/add-driver.js",
"clean": "rimraf -rf ./dist",
"compile": "yarn workspace @sqltools/formatter build && yarn workspace @sqltools/extension compile",
"docs:build": "yarn --cwd ./docs run docz:build",
"docs:dev": "yarn --cwd ./docs run docz:dev",
"jest": "jest --config jest.config.js --passWithNoTests",
"package": "cross-env NODE_ENV=production yarn run compile && (cd ./dist && cross-env NODE_ENV=production vsce package --yarn)",
"postcompile": "rimraf -rf ./dist/ui/theme.js || exit 0",
"postinstall": "yarn workspace @sqltools/formatter install",
"precompile": "yarn test && yarn run clean",
"pretest": "rimraf -rf ./coverage",
"prewatch": "yarn run clean",
"publish": "yarn run package && cd ./dist && vsce publish --yarn",
"test:older": "cross-env CODE_VERSION=1.32.3 yarn test",
"test:docker": "yarn --cwd ./test run",
"test:watch": "cross-env WATCH=1 yarn run test",
"test": "cross-env CODE_DISABLE_EXTENSIONS=1 CODE_TESTS_WORKSPACE=./test/docker node ./test/run-tests.js",
"watch": "yarn workspace @sqltools/extension watch",
"build": "yarn --cwd ./docs run docz:build"
},
"devDependencies": {
"@types/source-map-support": "^0.5.0",
"cross-env": "^5.2.0",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"jest-environment-node": "^24.5.0",
"minimist": "^1.2.3",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.11",
"typescript": "^3.7.3",
"vsce": "^1.66.0"
}
}