-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1010 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
{
"name": "@root/cordis",
"private": true,
"type": "module",
"version": "0.0.0",
"workspaces": ["external/*", "packages/*", "plugins/*"],
"license": "MIT",
"scripts": {
"yakumo": "node --import tsx scripts/yakumo.js",
"build": "yarn yakumo build",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
"lint": "eslint --cache",
"test": "yarn yakumo mocha --import tsx",
"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": {
"@cordisjs/eslint-config": "^1.1.1",
"@sinonjs/fake-timers": "^6.0.1",
"@types/node": "^22.13.9",
"@types/sinonjs__fake-timers": "^6.0.4",
"c8": "^7.14.0",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.1",
"mocha": "^9.2.2",
"shx": "^0.3.4",
"typescript": "^5.8.2",
"yml-register": "^1.2.5"
}
}