forked from qunitjs/qunit
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "qunitjs",
"title": "QUnit",
"description": "An easy-to-use JavaScript Unit Testing framework.",
"version": "1.12.0pre",
"author": {
"name": "jQuery Foundation and other contributors",
"url": "https://github.com/jquery/qunit/blob/master/AUTHORS.txt"
},
"contributors": [
"John Resig <[email protected]> (http://ejohn.org/)",
"Jörn Zaefferer <[email protected]> (http://bassistance.de/)"
],
"homepage": "http://qunitjs.com",
"repository": {
"type": "git",
"url": "git://github.com/jquery/qunit.git"
},
"bugs": {
"url": "https://github.com/jquery/qunit/issues"
},
"license": {
"name": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
"keywords": [
"testing",
"unit",
"jquery"
],
"main": "qunit/qunit.js",
"scripts": {
"test": "grunt"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.2.0",
"grunt-contrib-qunit": "~0.2.0",
"grunt-contrib-watch": "~0.3.0",
"grunt-git-authors": "~1.2.0",
"testswarm": "~1.0.1"
}
}