-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 797 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 797 Bytes
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
{
"name": "karma-jsdom-launcher",
"version": "21.0.0",
"description": "A Karma plugin. Launcher for jsdom.",
"main": "index.js",
"author": "Jonas Amundsen <jonasba@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/badeball/karma-jsdom-launcher.git"
},
"keywords": [
"karma-plugin",
"karma-launcher",
"jsdom"
],
"scripts": {
"clean-install": "rm -rf node_modules/ && npm install && npm install --no-save karma@4 jsdom@27 && ln -s ../ node_modules/karma-jsdom-launcher",
"test": "mocha --timeout 10000 --slow 5000"
},
"peerDependencies": {
"jsdom": ">=22 <=29",
"karma": ">=3 <=6"
},
"license": "MIT",
"devDependencies": {
"intercept-stdout": "^0.1.2",
"karma-mocha": "^1.3.0",
"mocha": "^3.1.2"
}
}