-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 922 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
36
37
38
{
"name": "tev2-tools",
"private": true,
"workspaces": [
"utils",
"mrg-import",
"mrgt",
"trrt",
"hrgt"
],
"type": "module",
"scripts": {
"build": "npm run build --workspaces",
"rebuild": "npm run rebuild --workspaces",
"format": "prettier . --write && npm run lint",
"lint": "eslint . --cache --fix --ext js,ts",
"test": "mocha '__tests__/**/*.test.js' --timeout 10000"
},
"devDependencies": {
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"version": "",
"dependencies": {
"yaml": "^2.5.0"
}
}