-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "karma-iframes",
"version": "1.3.0",
"description": "Lets you run each test in a separate context, loaded as an iframe.",
"main": "index.js",
"files": [
"index.js",
"static",
"lib"
],
"scripts": {
"test": "RUN_IN_PARENT=true npm run test-try-twice && RUN_IN_PARENT=false npm run test-try-twice",
"test-try-twice": "npm run test-run:gha || npm run test-run:gha",
"test-run": "karma start --single-run",
"test-run:gha": "karma start karma.conf.gha.js --single-run --browsers GhaHeadlessChrome"
},
"keywords": [
"karma-plugin",
"karma-framework",
"karma-preprocessor"
],
"peerDependencies": {
"karma": ">=1.2"
},
"author": "Raphael Schweikert <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"chai": "^4.3.4",
"karma": "^6.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"mocha": "^8.3.2"
},
"dependencies": {
"minimatch": "^3.0.4",
"tmp": "0.2.1"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sabberworm/karma-iframes.git"
},
"bugs": {
"url": "https://github.com/sabberworm/karma-iframes/issues"
},
"homepage": "https://github.com/sabberworm/karma-iframes#readme"
}