-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
34
35
36
37
38
39
40
41
42
{
"name": "isomorphic-worker",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"description": "simplified cross worker API for web workers and worker threads",
"scripts": {
"build": "tsc --build",
"watch": "tsc --build -w",
"pretest": "npm run clean && npm run lint && npm run build",
"test:browser": "npm run test:browser --workspaces --if-present",
"test:node": "npm run test:node --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "eslint",
"clean": "rimraf -g \"packages/*/dist\""
},
"author": "Wix.com",
"license": "MIT",
"devDependencies": {
"@file-services/path": "^9.4.1",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "22",
"@wixc3/create-disposables": "^2.2.0",
"chai": "^5.1.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^11.0.1",
"mocha-play": "^8.0.0",
"playwright-chromium": "^1.49.1",
"playwright-core": "^1.49.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"source-map-loader": "^5.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0",
"webpack": "^5.97.1"
}
}