forked from kmiyashiro/grunt-mocha
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.14 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
{
"name": "grunt-mocha",
"description": "Grunt task for running client-side Mocha specs in PhantomJS",
"version": "1.2.0",
"homepage": "https://github.com/disqus/grunt-mocha",
"author": {
"name": "Kelly Miyashiro",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Disqus Inc.",
"email": "[email protected]",
"web": "https://github.com/disqus/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/disqus/grunt-mocha.git"
},
"bugs": {
"url": "https://github.com/disqus/grunt-mocha/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "grunt jshint",
"test": "grunt test"
},
"dependencies": {
"grunt-lib-phantomjs": "^1.1.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"grunt": "^1.0.3",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-jshint": "^2.0.0"
},
"keywords": [
"gruntplugin",
"mocha",
"test",
"phantomjs"
],
"files": [
"growl",
"phantomjs",
"support",
"tasks"
]
}