-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.18 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "browlet-monorepo",
"private": true,
"description": "Development workspace for Browlet, Stylelet, and Selectlet",
"homepage": "https://github.com/koal44/browlet",
"workspaces": [
"packages/*"
],
"license": "MIT",
"author": {
"name": "Eric Knowlton"
},
"bugs": {
"url": "https://github.com/koal44/browlet/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koal44/browlet.git"
},
"scripts": {
"build": "node scripts/build.mjs",
"lint": "npm run typecheck && eslint src test scripts packages",
"typecheck": "tsc -b",
"install:vendor": "node scripts/build.mjs selectlet && tsx scripts/vendor.ts",
"install:wpt": "tsx scripts/install-wpt.ts",
"test:unit": "vitest run --project=unit",
"test:artifact": "node test/artifact/cjs.test.cjs && node test/artifact/esm.test.mjs && node test/artifact/global.test.cjs",
"test:browlet:wpt": "vitest run --project=wpt",
"test:selectlet:oracle": "cross-env HARNESS_MODE=normal playwright test --project=selectlet",
"test:selectlet:oracle:fixme": "cross-env HARNESS_MODE=fixme playwright test --project=selectlet",
"test:selectlet:browlet": "cross-env HARNESS=browlet vitest run --project=browlet-host",
"test:stylelet:oracle": "cross-env HARNESS_MODE=normal playwright test --project=stylelet",
"test:stylelet:oracle:fixme": "cross-env HARNESS_MODE=fixme playwright test --project=stylelet",
"test:selectlet:perf": "playwright test --project=perf --workers=1",
"test:quick": "npm run lint && npm run build && npm run test:unit && npm run test:artifact",
"test:all": "npm run test:quick && npm run test:browlet:wpt && npm run test:selectlet:oracle && npm run test:stylelet:oracle"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.5.2",
"@types/tr46": "^5.0.1",
"cross-env": "^10.1.0",
"eslint": "9.31.0",
"jsdom": "^29.1.1",
"playwright": "1.61.1",
"rollup": "^4.60.4",
"rollup-plugin-dts": "^6.4.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
}
}