-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.34 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
{
"name": "jetstream",
"version": "3.0.0-alpha",
"description": "An open source repository for the JetStream benchmark.",
"engines": {
"node": ">=18.13.0",
"npm": ">=8.19.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebKit/JetStream.git"
},
"bugs": {
"url": "https://github.com/WebKit/JetStream/issues"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"server": "node tests/server.mjs",
"lint:check": "eslint **/*.{js,mjs,jsx,ts,tsx}",
"pretty:check": "prettier --check ./",
"format:check": "npm run pretty:check && npm run lint:check",
"test:chrome": "node tests/run.mjs --browser chrome",
"test:firefox": "node tests/run.mjs --browser firefox",
"test:safari": "node tests/run.mjs --browser safari",
"test:edge": "node tests/run.mjs --browser edge"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-decorators": "^7.21.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"eslint": "^8.38.0",
"http-server": "^14.1.1",
"prettier": "^2.8.3",
"selenium-webdriver": "^4.8.0",
"es-main":"^1.3.0",
"local-web-server": "^5.4.0"
}
}