-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.36 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"type": "module",
"scripts": {
"build": "wireit",
"start": "wireit",
"serve": "wireit",
"bench:dirty-check-attributes": "wireit",
"bench:dirty-check-text-content": "wireit"
},
"wireit": {
"build": {
"command": "tsc --pretty",
"files": [
"src/**/*.ts"
],
"output": [
"benchmarks/**/*.{js|js.map|d.ts|d.ts.map}"
],
"clean": "if-file-deleted"
},
"start": {
"dependencies": [
"bench:dirty-check-attributes",
"bench:dirty-check-text-content"
]
},
"serve": {
"command": "wds --node-resolve",
"service": true
},
"bench:dirty-check-attributes": {
"command": "tach --config ./benchmarks/dirty-check-attributes/tachometer.json",
"files": [
"benchmarks/dirty-check-attributes/tachometer.json"
],
"dependencies": [
"serve",
"build"
]
},
"bench:dirty-check-text-content": {
"command": "tach --config ./dirty-check-text-content/tachometer.json",
"files": [
"dirty-check-text-content/tachometer.json"
],
"dependencies": [
"serve",
"build"
]
}
},
"devDependencies": {
"typescript": "^5.2.2",
"wireit": "^0.14.1"
},
"dependencies": {
"@web/dev-server": "^0.3.6",
"tachometer": "^0.7.0",
"chromedriver": "*"
}
}