-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 3.85 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 3.85 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
{
"name": "neo.mjs-benchmarks",
"version": "10.5.3",
"description": "Neo.mjs: Benchmarks",
"type": "module",
"scripts": {
"test:all" : "npx playwright test",
"test:angular" : "FRAMEWORK=angular npx playwright test tests/angular.spec.mjs",
"test:angular-scrolling" : "FRAMEWORK=angular npx playwright test tests/angular-scrolling.spec.mjs",
"test:neo" : "FRAMEWORK=neo npx playwright test tests/neo.spec.mjs",
"test:neo-scrolling" : "FRAMEWORK=neo npx playwright test tests/neo-scrolling.spec.mjs",
"test:neo-big-data" : "FRAMEWORK=neo APP=bigData npx playwright test tests/neo-big-data.spec.mjs",
"test:react-big-data" : "FRAMEWORK=react APP=bigData npx playwright test tests/react-big-data.spec.mjs",
"test:react" : "FRAMEWORK=react npx playwright test tests/react.spec.mjs",
"test:react-scrolling" : "FRAMEWORK=react npx playwright test tests/react-scrolling.spec.mjs",
"benchmark:accurate:all" : "node ./scripts/run-benchmarks.mjs --framework=all --suite=all",
"benchmark:accurate:angular" : "FRAMEWORK=angular node ./scripts/run-benchmarks.mjs --framework=angular --suite=all",
"benchmark:accurate:angular-scrolling" : "FRAMEWORK=angular node ./scripts/run-benchmarks.mjs --framework=angular --suite=scrolling",
"benchmark:accurate:neo" : "FRAMEWORK=neo node ./scripts/run-benchmarks.mjs --framework=neo --suite=all",
"benchmark:accurate:neo-scrolling" : "FRAMEWORK=neo node ./scripts/run-benchmarks.mjs --framework=neo --suite=scrolling",
"benchmark:accurate:neo-big-data" : "FRAMEWORK=neo node ./scripts/run-benchmarks.mjs --framework=neo --suite=big-data",
"benchmark:accurate:react-big-data" : "FRAMEWORK=react node ./scripts/run-benchmarks.mjs --framework=react --suite=big-data",
"benchmark:accurate:react" : "FRAMEWORK=react node ./scripts/run-benchmarks.mjs --framework=react --suite=all",
"benchmark:accurate:react-scrolling" : "FRAMEWORK=react node ./scripts/run-benchmarks.mjs --framework=react --suite=scrolling",
"benchmark:generate-report:angular" : "node ./scripts/generate-report.mjs --framework=angular",
"benchmark:generate-report:neo" : "node ./scripts/generate-report.mjs --framework=neo",
"benchmark:generate-report:react" : "node ./scripts/generate-report.mjs --framework=react",
"benchmark:generate-report:neo-big-data" : "node ./scripts/generate-big-data-report.mjs",
"benchmark:generate-report:react-big-data" : "node ./scripts/generate-big-data-report.mjs --framework=react",
"benchmark:generate-report:combined" : "node ./scripts/generate-combined-report.mjs",
"benchmark:generate-report:big-data-combined": "node ./scripts/generate-combined-big-data-report.mjs",
"build:benchmark-app" : "npm --prefix apps/interactive-benchmark-neo run build-all",
"setup" : "node scripts/setup.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/neomjs/benchmarks.git"
},
"author": "Tobias Uhlig",
"license": "MIT",
"bugs": {
"url": "https://github.com/neomjs/benchmarks/issues"
},
"homepage": "https://neomjs.com/",
"dependencies": {
"@playwright/test": "^1.54.2",
"fs-extra": "^11.3.0",
"glob": "^11.0.3"
},
"funding": {
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/tobiu"
}
}