-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
43 lines (43 loc) · 1.04 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": "node-qunit-phantomjs",
"version": "2.1.1",
"description": "Run QUnit unit tests in a headless PhantomJS instance without using Grunt.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/jonkemp/node-qunit-phantomjs.git"
},
"keywords": [
"qunit",
"phantomjs",
"test",
"testing"
],
"author": "Jonathan Kemp <[email protected]> (http://jonkemp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonkemp/node-qunit-phantomjs/issues"
},
"homepage": "https://github.com/jonkemp/node-qunit-phantomjs",
"dependencies": {
"chalk": "^3.0.0",
"minimist": "^1.2.0",
"phantomjs-prebuilt": "^2.1.16",
"qunit-phantomjs-runner": "^2.4.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^7.0.2",
"mocha": "*",
"qunit": "^2.9.3",
"strip-ansi": "^6.0.0"
},
"bin": {
"node-qunit-phantomjs": "./bin/node-qunit-phantomjs"
}
}