-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 KB
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
{
"name": "grunt-mutation-testing",
"version": "1.4.2",
"description": "JavaScript Mutation Testing as grunt plugin. Tests your tests by mutating the code.",
"repository": {
"type": "git",
"url": "https://github.com/jimivdw/grunt-mutation-testing"
},
"author": {
"name": "Jimi van der Woning",
"url": "https://github.com/jimivdw"
},
"contributors": [
{
"name": "Martin Koster",
"url": "https://github.com/paysdoc"
},
{
"name": "Marco Stahl",
"url": "https://github.com/shybyte"
}
],
"keywords": [
"gruntplugin"
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.10.0"
},
"license": "MIT",
"devDependencies": {
"chai": "~2.3.0",
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-karma": "~0.12.1",
"grunt-mocha-test": "~0.12.7",
"jshint-stylish": "~2.0.0",
"karma-chai": "~0.1.0",
"karma-mocha": "~0.2.2",
"karma-phantomjs-launcher": "~0.2.3",
"load-grunt-tasks": "~3.2.0"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"escodegen": "~1.6.1",
"esprima": "~1.2.5",
"fs-extra": "~0.16.5",
"glob": "~5.0.10",
"handlebars": "~3.0.3",
"htmlparser2": "~3.8.2",
"karma": "~0.13.21",
"karma-coverage": "~0.5.3",
"lodash": "~3.9.3",
"log4js": "~0.6.25",
"mocha": "~1.21.5",
"q": "~2.0.3",
"require-uncache": "~0.0.2",
"sync-exec": "~0.5.0",
"temp": "~0.8.1",
"xml2js": "~0.4.8"
}
}