-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 950 Bytes
/
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
{
"name": "@root/server",
"private": true,
"type": "module",
"version": "1.0.0",
"workspaces": [
"external/*",
"packages/*"
],
"license": "MIT",
"scripts": {
"build": "tsc -b",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
"test": "yarn yakumo mocha -r esbuild-register -t 10000",
"test:text": "shx rm -rf coverage && c8 -r text yarn test",
"test:json": "shx rm -rf coverage && c8 -r json yarn test",
"test:html": "shx rm -rf coverage && c8 -r html yarn test"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^22.7.5",
"c8": "^7.14.0",
"esbuild": "^0.23.1",
"esbuild-register": "^3.5.0",
"mocha": "^9.2.2",
"shx": "^0.3.4",
"typescript": "^5.6.2",
"yakumo": "^1.0.0-beta.18",
"yakumo-esbuild": "^1.0.0-beta.7",
"yakumo-mocha": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.5"
}
}