-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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": "@smelly/workspace",
"version": "1.0.0",
"description": "Smelly test is an extension that helps developers mitigate test smells in their test suites. Smelly test is focused on the javascript/typescript ecosystem, for the backend and frontend.",
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "^20.14.8",
"@vitest/coverage-v8": "^2.1.6",
"cpy-cli": "^5.0.0",
"dotenv": "^16.4.5",
"rimraf": "^5.0.7",
"ts-loader": "^9.5.1",
"typescript": "^5.2.0",
"vitest": "^2.1.6",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"glob": "^11.0.0"
},
"scripts": {
"build": "npm exec --workspaces -- npm run compile",
"test": "npm exec --workspaces -- npm run test",
"lint": "npm exec --workspaces -- npm run lint",
"clean:node_modules": "npm exec --workspaces -- rimraf node_modules/",
"clean": "npm run clean:node_modules && npm exec --workspaces -- npm run clean"
},
"author": "",
"license": "ISC",
"workspaces": [
"detector",
"cli",
"vscode"
]
}