forked from qunitjs/qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "qunitjs",
"title": "QUnit",
"description": "An easy-to-use JavaScript Unit Testing framework.",
"version": "1.22.1-pre",
"homepage": "https://qunitjs.com",
"author": {
"name": "jQuery Foundation and other contributors",
"url": "https://github.com/jquery/qunit/blob/master/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "git://github.com/jquery/qunit.git"
},
"keywords": [
"testing",
"unit",
"jquery"
],
"bugs": {
"url": "https://github.com/jquery/qunit/issues"
},
"license": "MIT",
"files": [
"qunit/qunit.js",
"qunit/qunit.css",
"LICENSE.txt"
],
"dependencies": {},
"devDependencies": {
"async": "1.4.2",
"browserstack-runner": "0.3.7",
"commitplease": "2.0.0",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-concurrent": "2.0.3",
"grunt-contrib-concat": "1.0.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-watch": "0.5.3",
"grunt-coveralls": "1.0.0",
"grunt-git-authors": "3.0.0",
"grunt-jscs": "2.7.0",
"grunt-qunit-istanbul": "0.5.0",
"grunt-search": "0.1.6",
"load-grunt-tasks": "0.3.0",
"requirejs": "2.1.16"
},
"scripts": {
"browserstack": "sh build/run-browserstack.sh",
"ci": "grunt && grunt coveralls && npm run browserstack",
"test": "grunt",
"prepublish": "grunt build"
},
"commitplease": {
"components": [
"All",
"Assert",
"Build",
"CSS",
"Core",
"Dump",
"HTML Reporter",
"Readme",
"Test",
"Tests"
]
},
"main": "qunit/qunit.js"
}