-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "eshost",
"version": "9.0.0",
"description": "Invoke ECMAScript scripts in any command line JS engine.",
"main": "lib/eshost.js",
"scripts": {
"build:env": "./node_modules/.bin/esvu",
"test": "jest --runInBand --config=./jest.config.js",
"lint": "eslint lib/* bin/* test/*.js"
},
"author": "Brian Terlson",
"license": "MIT",
"devDependencies": {
"common-tags": "^1.8.0",
"eslint": "^7.17.0",
"esvu": "^1.2.3",
"hasbin": "^1.2.3",
"jasmine": "^3.7.0",
"jest": "^26.6.3",
"mocha": "^2.3.4",
"prettier": "^2.2.1",
"sinon": "^6.1.3",
"test262-stream": "^1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bterlson/eshost"
},
"dependencies": {
"error-stack-parser": "^1.3.3",
"is-symlink": "^0.1.1",
"recast": "^0.17.5",
"selenium-webdriver": "^4.0.0-alpha.1",
"server-destroy": "^1.0.1",
"socket.io": "^2.3.0",
"unique-temp-dir": "^1.0.0"
},
"homepage": "https://github.com/bterlson/eshost"
}