-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 999 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 999 Bytes
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
{
"name": "@wonderlandengine/api-workspace",
"version": "1.0.0",
"description": "Workspace for the @wonderland/api package",
"author": "Wonderland GmbH",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/WonderlandEngine/api.git"
},
"keywords": [
"webxr",
"wonderland",
"components"
],
"workspaces": [
"packages/api",
"packages/test-e2e"
],
"prettier": "@wonderlandengine/prettier-config",
"scripts": {
"build": "npm run build --workspace=packages/api",
"test": "npm run test -ws",
"test:e2e": "npm run build --workspace=packages/api && npm run test --workspace=packages/test-e2e --",
"pretty": "prettier --write \"packages/**/src/**/*.ts\" \"packages/**/test*/**/*.ts\"",
"pretty:check": "prettier --check \"packages/**/src/**/*.ts\" \"packages/**/test*/**/*.ts\""
},
"devDependencies": {
"@wonderlandengine/prettier-config": "^1.0.0",
"prettier": "^2.8.0"
}
}