-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 993 Bytes
/
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
{
"name": "grunt-qunit-node",
"description": "Grunt task that runs QUnit tests in Node.js",
"version": "0.1.0",
"homepage": "https://github.com/mucaho/grunt-qunit-node",
"author": {
"name": "mucaho",
"email": "mucaho@gmail.com",
"url": "https://github.com/mucaho"
},
"repository": {
"type": "git",
"url": "git://github.com/mucaho/grunt-qunit-node.git"
},
"bugs": {
"url": "https://github.com/mucaho/grunt-qunit-node/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"files": [
"tasks",
"package.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-jscs": "^3.0.1",
"grunt-jsvalidate": "^0.2.2",
"qunitjs": "^2.3.0"
},
"peerDependencies": {
"grunt": ">=0.4.0",
"qunitjs": "^2.0.0"
},
"keywords": [
"gruntplugin"
]
}