-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "karma-mocha-webworker",
"version": "1.3.0",
"description": "Karma plugin which runs your mocha tests in a WebWorker",
"main": "lib/index.js",
"scripts": {
"pretest": "grunt",
"test": "node test/test-runner",
"prepublish": "grunt build"
},
"repository": {
"type": "git",
"url": "git://github.com/Joris-van-der-Wel/karma-mocha-webworker.git"
},
"keywords": [
"karma-plugin",
"karma-adapter",
"karma-framework",
"mocha",
"webworker",
"worker"
],
"author": "Joris van der Wel <joris@jorisvanderwel.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Joris-van-der-Wel/karma-mocha-webworker/issues"
},
"homepage": "https://github.com/Joris-van-der-Wel/karma-mocha-webworker#readme",
"dependencies": {
"jsonbird": "^2.0.0",
"minimatch": "^3.0.3"
},
"peerDependencies": {
"mocha": "*"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"eslint": "^3.12.2",
"eslint-plugin-import": "^2.2.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^19.0.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"mocha": "^3.2.0"
}
}