forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "stryker",
"version": "0.5.6",
"description": "The extendable JavaScript mutation testing framework",
"main": "src/Stryker.js",
"typings": "src/Stryker.d.ts",
"scripts": {
"test": "grunt test",
"start": "tsc -w",
"sample": "node src/stryker-cli.js --configFile testResources/sampleProject/stryker.conf.js",
"preversion": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/stryker-mutator/stryker"
},
"engines": {
"node": ">=4"
},
"keywords": [
"mutation testing",
"mutation",
"testing",
"test",
"js",
"stryker"
],
"author": "Simon de Lang",
"contributors": [
"Simon de Lang <[email protected]>",
"Nico Jansen <[email protected]>",
"global <[email protected]>",
"Philipp Weissenbacher <[email protected]>",
"Jasper Catthoor <[email protected]>",
"Nico Stapelbroek <[email protected]>",
"Alex van Assem <[email protected]>",
"Jeremy Nagel <[email protected]>",
"Michael Williamson <[email protected]>"
],
"license": "Apache-2.0",
"bin": {
"stryker": "./bin/stryker"
},
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"es6-promise-pool": "^2.4.1",
"escodegen": "^1.8.0",
"esprima": "^2.7.0",
"glob": "^7.0.3",
"istanbul": "^0.4.5",
"lodash": "^3.10.1",
"log4js": "^0.6.33",
"mkdirp": "^0.5.1",
"progress": "^1.1.8",
"serialize-javascript": "^1.3.0"
},
"devDependencies": {
"@types/chai-as-promised": "0.0.28",
"@types/chalk": "^0.4.28",
"@types/escodegen": "0.0.5",
"@types/esprima": "^2.1.31",
"@types/estree": "0.0.32",
"@types/glob": "^5.0.29",
"@types/istanbul": "^0.4.29",
"@types/karma": "^0.13.32",
"@types/lodash": "^4.14.34",
"@types/log4js": "0.0.32",
"@types/mkdirp": "^0.3.28",
"@types/mocha": "^2.2.34",
"@types/progress": "^1.1.28",
"@types/sinon": "^1.16.33",
"@types/sinon-as-promised": "^4.0.5",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-mocha-istanbul": "^5.0.1",
"grunt-mocha-test": "^0.13.2",
"grunt-npm": "0.0.2",
"grunt-ts": "^6.0.0-beta.3",
"grunt-tslint": "^3.2.1",
"jasmine-core": "^2.4.1",
"karma": "1.0.0",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"load-grunt-tasks": "^3.5.0",
"mocha": "^2.3.3",
"sinon": "^1.17.2",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0",
"stryker-api": "^0.4.2",
"tslint": "^3.15.1",
"typescript": "^2.1.4"
},
"peerDependencies": {
"stryker-api": "^0.4.2"
}
}