-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1016 Bytes
/
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
41
{
"name": "esm-unit",
"version": "1.0.0-beta.4",
"author": "Richard Connamacher",
"description": "Unit testing native ES Modules in web browsers",
"main": "index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/intuit/esm-unit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"type": "module",
"engines": {
"node": ">=18"
},
"dependencies": {
"argparse": "2.0.1",
"express": "^4.19.2",
"glob": "^10.3.12",
"istanbul-lib-coverage": "3.2.2",
"istanbul-lib-instrument": "6.0.2",
"istanbul-lib-report": "3.0.1",
"istanbul-reports": "3.1.7",
"selenium-webdriver": "4.18.1"
},
"devDependencies": {
"google-closure-compiler": "20240317.0.0"
},
"bin": {
"esm-unit": "bin/esm-unit.js"
},
"scripts": {
"build": "scripts/build",
"prepare": "scripts/build",
"test": "node --experimental-test-coverage ./tests/unit/index.js"
}
}