-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.06 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
26
27
28
29
30
31
32
33
{
"name": "@symboldi/workspace",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc --build",
"docgen": "typedoc",
"lint": "eslint packages/**/*.ts",
"lintfix": "eslint packages/**/*.ts --fix",
"coverage": "c8 mocha packages/*/dist/test/**/*.test.js",
"test": "mocha packages/*/dist/test/**/*.test.js",
"test-acf": "node --experimental-async-context-frame node_modules/mocha/bin/_mocha \"packages/*/dist/test/**/*.test.js\"",
"bt": "pnpm run build && pnpm run test",
"bc": "pnpm run build && pnpm run coverage"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"c8": "^10.1.2",
"eslint": "^9.15.0",
"eslint-config-love": "^107.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"mocha": "^10.8.2",
"typedoc": "^0.26.11",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}