-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.7 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@chiragrupani/karma-chromium-edge-launcher",
"version": "2.4.2",
"description": "A Karma plugin. Launcher for different Chromium Edge channels - Dev, Canary, Beta and Stable",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "node node_modules/mocha/bin/mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc npm run test -- --reporter=mocha-junit-reporter --reporter-options mochaFile=coverage/test-results.xml",
"package": "npm run build & npm pack",
"integration-test": "npm run build & karma start integrationTests/karma.conf.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git://github.com/ChiragRupani/karma-chromiumedge-launcher.git"
},
"keywords": [
"karma-plugin",
"karma-launcher",
"Chromium Edge Dev",
"Chromium Edge Canary",
"Chromium Edge Beta",
"Chromium Edge Stable",
"Microsoft",
"edge",
"Chromium Edge Launcher",
"Karma",
"Edgium"
],
"author": "Chirag",
"license": "MIT Based",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.7",
"@types/sinon": "^17.0.3",
"karma": "^6.4.3",
"karma-mocha": "^2.0.1",
"mocha": "^10.4.0",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^17.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"nyc": {
"reporter": [
"cobertura",
"text"
],
"temp-directory": "./coverage/.nyc_output",
"exclude": [
"typings",
"tests"
],
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"sourceMap": true,
"instrument": true
}
}