UNPKG

2.07 kBJSONView Raw
1{
2 "name": "stryker-html-reporter",
3 "version": "0.14.3",
4 "description": "An html reporter for the JavaScript mutation testing framework Stryker",
5 "main": "src/index.js",
6 "typings": "src/index.d.ts",
7 "scripts": {
8 "clean": "rimraf resources \"+(test|src)/!(resources)/**/*+(.d.ts|.js|.map)\" \"+(test|src)/*+(.d.ts|.js|.map)\" .nyc_output reports coverage",
9 "prebuild": "npm run clean",
10 "build": "tsc -p . && node tasks/clientResources.js && npm run browserify-client-resources",
11 "browserify-client-resources": "browserify src/resources/stryker.js -o resources/stryker.js",
12 "postbuild": "tslint -p tsconfig.json",
13 "start": "tsc -w -p .",
14 "test": "nyc --reporter=html --report-dir=reports/coverage --check-coverage --lines 95 --functions 95 --branches 90 mocha \"test/helpers/*.js\" \"test/unit/*.js\" \"test/integration/*.js\""
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/stryker-mutator/stryker.git"
19 },
20 "engines": {
21 "node": ">=6"
22 },
23 "keywords": [
24 "stryker",
25 "stryker-plugin",
26 "stryker-reporter",
27 "html",
28 "report",
29 "mutation",
30 "testing"
31 ],
32 "author": "Nico Jansen <nicoj@infosupport.com>",
33 "license": "Apache-2.0",
34 "bugs": {
35 "url": "https://github.com/stryker-mutator/stryker/issues"
36 },
37 "homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/stryker-html-reporter#readme",
38 "dependencies": {
39 "file-url": "^2.0.0",
40 "lodash": "^4.13.1",
41 "log4js": "^1.0.1",
42 "mkdirp": "^0.5.1",
43 "mz": "^2.5.0",
44 "rimraf": "^2.6.1",
45 "typed-html": "^0.6.0"
46 },
47 "peerDependencies": {
48 "stryker-api": ">=0.15.0 <0.18.0"
49 },
50 "devDependencies": {
51 "@types/file-url": "^2.0.0",
52 "@types/jsdom": "^11.0.2",
53 "@types/node": "^6.0.113",
54 "bootstrap": "4.1.1",
55 "highlight.js": "^9.4.0",
56 "jquery": "^3.2.1",
57 "jsdom": "^10.1.0",
58 "popper.js": "^1.12.5",
59 "stryker-api": "^0.17.3"
60 },
61 "contributors": [
62 "Nico Jansen <jansennico@gmail.com>",
63 "Simon de Lang <simondelang@gmail.com>"
64 ]
65}