-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "gulp-qunit",
"version": "3.0.1",
"description": "Run QUnit unit tests in a headless PhantomJS instance.",
"main": "index.js",
"license": "MIT",
"files": [
"index.js"
],
"repository": "jonkemp/gulp-qunit",
"author": "Jonathan Kemp <[email protected]> (http://jonkemp.com/)",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha",
"lint": "gulp lint",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=lcov"
},
"keywords": [
"gulpplugin",
"test",
"testing",
"qunit"
],
"dependencies": {
"chalk": "^4.1.2",
"fancy-log": "^2.0.0",
"phantomjs-prebuilt": "^2.1.16",
"plugin-error": "^1.0.1",
"qunit-phantomjs-runner": "^2.4.2",
"through2": "^4.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"qunit": "^2.18.0",
"strip-ansi": "^6.0.0",
"vinyl": "^2.2.1"
}
}