-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.61 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@chiragrupani/karma-chromium-edge-launcher",
"version": "2.1.0",
"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"
},
"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/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.0",
"@types/sinon": "^9.0.8",
"chai": "^4.2.0",
"mocha": "^8.2.0",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"nyc": {
"reporter": [
"cobertura",
"text"
],
"temp-directory": "./coverage/.nyc_output",
"exclude": [
"typings",
"tests"
],
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"sourceMap": true,
"instrument": true
}
}