This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "stryker-tape-runner",
"version": "0.0.1",
"description": "The Stryker TestRunner for Tape",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"start": "tsc -w",
"pretest": "npm run build",
"test": "node test-runner.js",
"preversion": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stryker-mutator/stryker-tape-runner.git"
},
"keywords": [
"stryker",
"stryker-plugin",
"tape",
"test",
"runner",
"testrunner",
"mutation",
"testing"
],
"author": "Jeremy Nagel <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stryker-mutator/stryker-tape-runner/issues"
},
"homepage": "https://github.com/stryker-mutator/stryker-tape-runner#readme",
"dependencies": {
"log4js": "^1.0.1",
"stryker-api": "^0.4.1",
"tape": "^4.6.3"
},
"peerDependencies": {
"stryker-api": "^0.4.0"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/log4js": "0.0.31",
"@types/mocha": "^2.2.40",
"@types/node": "^6.0.38",
"@types/sinon": "^1.16.31",
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-npm": "0.0.2",
"grunt-ts": "^6.0.0-beta.3",
"grunt-tslint": "^4.0.0",
"istanbul": "^0.4.0",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"sinon": "^1.17.2",
"tape-catch": "^1.0.6",
"tape-spawn": "^1.4.2",
"tslint": "^4.4.2",
"typescript": "~2.2.0"
},
"contributors": [
"Jeremy Nagel <[email protected]>",
"nicojs <[email protected]>",
"Simon de Lang <[email protected]>"
]
}