1 | {
|
2 | "name": "stryker-mocha-runner",
|
3 | "version": "0.17.1",
|
4 | "description": "A plugin to use the mocha test runner in Stryker, the JavaScript mutation testing framework",
|
5 | "main": "src/index.js",
|
6 | "scripts": {
|
7 | "start": "tsc -w",
|
8 | "clean": "rimraf \"+(test|src)/**/*+(.d.ts|.js|.map)\" .nyc_output reports coverage",
|
9 | "test": "nyc --reporter=html --report-dir=reports/coverage --lines 80 --functions 80 --branches 75 npm run mocha",
|
10 | "mocha": "mocha \"test/helpers/**/*.js\" \"test/unit/**/*.js\" && mocha --timeout 10000 \"test/helpers/**/*.js\" \"test/integration/**/*.js\""
|
11 | },
|
12 | "repository": {
|
13 | "type": "git",
|
14 | "url": "https://github.com/stryker-mutator/stryker"
|
15 | },
|
16 | "engines": {
|
17 | "node": ">=6"
|
18 | },
|
19 | "keywords": [
|
20 | "stryker",
|
21 | "stryker-plugin",
|
22 | "mocha",
|
23 | "stryker-test-runner"
|
24 | ],
|
25 | "author": "Simon de Lang <simon.delang@infosupport.com>",
|
26 | "contributors": [
|
27 | "Nico Jansen <jansennico@gmail.com>",
|
28 | "Simon de Lang <simondelang@gmail.com>"
|
29 | ],
|
30 | "license": "Apache-2.0",
|
31 | "bugs": {
|
32 | "url": "https://github.com/stryker-mutator/stryker/issues"
|
33 | },
|
34 | "homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/stryker-mocha-runner#readme",
|
35 | "dependencies": {
|
36 | "multimatch": "~3.0.0",
|
37 | "stryker-api": "^0.24.1",
|
38 | "tslib": "~1.9.3"
|
39 | },
|
40 | "devDependencies": {
|
41 | "@stryker-mutator/test-helpers": "^0.1.1",
|
42 | "@types/multimatch": "~2.1.2",
|
43 | "stryker-mocha-framework": "^0.15.1"
|
44 | },
|
45 | "peerDependencies": {
|
46 | "mocha": ">= 2.3.3 < 6"
|
47 | },
|
48 | "gitHead": "1882514c285e1bc582e4394375c0ac64717b2f8b"
|
49 | }
|