-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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
{
"name": "chromium-edge-launcher",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "mocha --require ts-node/register --reporter=dot test/**/*-test.ts --timeout=10000",
"test-formatting": "test/check-formatting.sh",
"format": "scripts/format.sh",
"type-check": "tsc --allowJs --checkJs --noEmit --target es2016 *.js --skipLibCheck",
"prepublishOnly": "npm run build && npm run test"
},
"devDependencies": {
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.3",
"clang-format": "^1.8.0",
"mocha": "^10.4.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/node": "*",
"escape-string-regexp": "^4.0.0",
"is-wsl": "^2.2.0",
"lighthouse-logger": "^1.0.0",
"mkdirp": "^1.0.4"
},
"version": "0.3.0",
"types": "./dist/index.d.ts",
"description": "Launch latest Edge with the Devtools Protocol port open",
"repository": "https://github.com/cezaraugusto/chromium-edge-launcher/",
"author": "Cezar Augusto",
"license": "Apache-2.0"
}