-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
34 lines (34 loc) Β· 937 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
{
"name": "minification-benchmarks",
"description": "JS minification benchmarks",
"license": "MIT",
"repository": "privatenumber/minification-benchmarks",
"author": "Hiroki Osame <[email protected]>",
"private": true,
"files": [],
"packageManager": "[email protected]",
"scripts": {
"bench": "tsx packages/bench/benchmark/cli.ts",
"bench-all": "tsx packages/bench/benchmark-all/cli.ts",
"update-readme": "tsx packages/data/update-readme/index.ts",
"lint": "lintroll --cache . --ignore-pattern results",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@minification-benchmarks/artifacts": "*",
"@minification-benchmarks/minifiers": "*",
"@minification-benchmarks/utils": "*",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.14.2",
"lintroll": "^1.6.1",
"tsx": "^4.12.1",
"typescript": "^5.4.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"dayjs"
]
}
}
}