-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "eshost",
"version": "9.0.0",
"description": "Invoke ECMAScript scripts in any command line JS engine.",
"type": "module",
"exports": "./lib/eshost.js",
"scripts": {
"build:env": "./node_modules/.bin/esvu",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --config=./jest.config.js",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "Brian Terlson",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"common-tags": "^1.8.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"esvu": "^1.3.0",
"globals": "^17.6.0",
"hasbin": "^1.2.3",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"sinon": "^21.1.2",
"test262-stream": "^1.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tc39/eshost"
},
"dependencies": {
"error-stack-parser": "^2.1.4",
"recast": "^0.23.11",
"selenium-webdriver": "^4.43.0",
"server-destroy": "^1.0.1",
"socket.io": "^4.8.3",
"stackframe": "^1.3.4"
},
"homepage": "https://github.com/tc39/eshost"
}