forked from qunitjs/qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.86 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
70
71
72
73
74
75
76
77
78
{
"name": "qunitjs",
"title": "QUnit",
"description": "An easy-to-use JavaScript Unit Testing framework.",
"version": "2.0.2-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.5.2",
"babel-plugin-external-helpers": "6.8.0",
"babel-preset-es2015": "6.13.2",
"browserstack-runner": "0.4.3",
"commitplease": "2.3.0",
"eslint-config-jquery": "1.0.0",
"eslint-plugin-qunit": "2.2.0",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-concurrent": "2.2.1",
"grunt-contrib-concat": "1.0.0",
"grunt-contrib-watch": "1.0.0",
"grunt-coveralls": "1.0.0",
"grunt-eslint": "19.0.0",
"grunt-git-authors": "3.1.1",
"grunt-qunit-istanbul": "0.6.0",
"grunt-rollup": "0.7.1",
"grunt-search": "0.1.8",
"load-grunt-tasks": "3.4.1",
"requirejs": "2.2.0",
"rollup-plugin-babel": "2.6.1"
},
"scripts": {
"browserstack": "sh build/run-browserstack.sh",
"ci": "grunt test && grunt coveralls",
"ci-include-lint": "grunt eslint && grunt test && grunt coveralls",
"test": "grunt",
"prepublish": "grunt build"
},
"commitplease": {
"components": [
"All",
"Assert",
"Build",
"CSS",
"Core",
"Dump",
"HTML Reporter",
"Readme",
"Test",
"Tests"
]
},
"main": "qunit/qunit.js",
"engines": {
"node" : "0.12.* || 4.* || 6.* || 7.*"
}
}