-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
25 lines (25 loc) · 1.13 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
{
"name": "sqlite-editor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"//": "We do not include vscode/ in npm workspaces because vsce does not support it. We use concurrently instead of npm -ws because it has nicer output.",
"start": "concurrently --names \"ui,server\" \"cd ui && npm run _start\" \"cd node-http && npm start\"",
"test": "npm run test:vscode && npm run test:ui",
"test:vscode": "cd vscode && npm test && cd ..",
"test:ui": "rm -f node-http/_test.db && concurrently --names \"ui,server,test\" --success \"command-test\" --kill-others \"cd ui && npm run _start\" \"cd node-http && DB_PATH=_test.db npm start\" \"cd ui && npm run _test\"",
"test:ui:debug": "rm -f node-http/_test.db && concurrently --names \"ui,server,test\" --success \"command-test\" --kill-others \"cd ui && npm run _start\" \"cd node-http && DB_PATH=_test.db npm start\" \"cd ui && npm run _test:debug\"",
"install": "cd vscode && npm i"
},
"keywords": [],
"author": "",
"license": "GPLV3",
"workspaces": [
"ui",
"node-http"
],
"devDependencies": {
"concurrently": "^7.6.0"
}
}