forked from croc-code/grunt-croc-qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "grunt-croc-qunit",
"description": "Run QUnit unit tests in a headless PhantomJS instance with code coverage support via Istanbul. Despite grunt-contrib-qunit it has no direct dependency on phantomjs module",
"version": "0.3.1",
"homepage": "https://github.com/CrocInc/grunt-croc-qunit",
"author": {
"name": "Sergei Dorogin",
"url": "https://github.com/evil-shrike"
},
"repository": {
"type": "git",
"url": "git://github.com/CrocInc/grunt-croc-qunit.git"
},
"bugs": {
"url": "https://github.com/CrocInc/grunt-croc-qunit/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/CrocInc/grunt-croc-qunit/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"eventemitter2": "~0.4.9",
"semver": "~1.0.14",
"temporary": "~0.0.4"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-connect": "~0.3.0",
"difflet": "~0.2.3",
"phantomjs": "~1.9.0-1"
},
"peerDependencies": {
"grunt": "~0.4.0"
},
"keywords": [
"gruntplugin", "qunit", "grunt", "phantomjs", "CROC", "Istanbul", "codecoverage", "code coverage", "testing"
]
}