-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 873 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "workspace-server",
"version": "0.0.8",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "cd .. && node --max-old-space-size=4096 node_modules/jest/bin/jest.js --runInBand --verbose",
"test:watch": "cd .. && jest --watch",
"test:coverage": "cd .. && node --max-old-space-size=4096 node_modules/jest/bin/jest.js --coverage",
"test:ci": "cd .. && node --max-old-space-size=4096 node_modules/jest/bin/jest.js --ci --coverage --maxWorkers=2",
"start": "ts-node src/index.ts",
"build": "node esbuild.config.js && node esbuild.headless-login.js",
"build:auth-utils": "node esbuild.auth-utils.js",
"build:headless-login": "node esbuild.headless-login.js"
},
"keywords": [],
"author": "Allen Hutchison",
"license": "Apache-2.0",
"type": "commonjs",
"devDependencies": {
"esbuild": "^0.28.0"
}
}