-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.42 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
56
57
58
59
60
61
62
63
64
{
"name": "webai-compute-benchmark",
"version": "0.0.1-alpha",
"description": "An open source repository for the WebAI compute benchmark.",
"engines": {
"node": ">=22.0.0",
"npm": ">=8.19.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChrome/webai-compute-benchmark.git"
},
"bugs": {
"url": "https://github.com/GoogleChrome/webai-compute-benchmark/issues"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"build": "node script/build.mjs",
"dev": "node tests/server.mjs",
"lint:check": "eslint **/*.{js,mjs,jsx,ts,tsx}",
"lint:fix": "eslint \"**/*.{js,mjs,jsx,ts,tsx}\" --fix",
"pretty:check": "prettier --check ./",
"pretty:fix": "prettier --write ./",
"format": "npm run pretty:fix && npm run lint:fix",
"test:chrome": "node tests/run-unittests.mjs --browser chrome",
"test:firefox": "node tests/run-unittests.mjs --browser firefox",
"test:safari": "node tests/run-unittests.mjs --browser safari",
"test:edge": "node tests/run-unittests.mjs --browser edge",
"test-e2e:chrome": "node tests/run-end2end.mjs --browser chrome",
"test-e2e:firefox": "node tests/run-end2end.mjs --browser firefox",
"test-e2e:safari": "node tests/run-end2end.mjs --browser safari",
"test-e2e:edge": "node tests/run-end2end.mjs --browser edge"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@next/eslint-plugin-next": "^16.1.6",
"@nuxt/eslint-config": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"es-main": "^1.3.0",
"eslint": "^9.39.2",
"eslint-plugin-ember": "^12.7.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-vue": "^10.7.0",
"expect.js": "^0.3.1",
"lws": "^4.2.0",
"lws-cors": "^4.2.1",
"lws-index": "^3.1.1",
"lws-log": "^3.0.0",
"lws-static": "^3.1.1",
"mocha": "^11.3.0",
"prettier": "^3.8.1",
"selenium-webdriver": "^4.40.0",
"sinon": "^21.0.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@actions/core": "^2.0.1"
}
}