-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
59 lines (59 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "node-qunit",
"description": "QUnit testing framework for Node.js",
"version": "2.0.1",
"author": "Oleg Slobodskoi <[email protected]>",
"contributors": [
{
"name": "Jonathan Buchanan"
},
{
"name": "Ashar Voultoiz"
},
{
"name": "Drew Fyock"
},
{
"name": "Timo Tijhof"
}
],
"repository": {
"type": "git",
"url": "https://github.com/qunitjs/node-qunit.git"
},
"license": "MIT",
"keywords": [
"TDD",
"QUnit",
"unit",
"testing",
"tests",
"async"
],
"bin": {
"qunit": "./bin/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "node test/testrunner.js && eslint .",
"lint": "eslint ."
},
"dependencies": {
"argsparser": "^0.0.7",
"cli-table": "^0.3.1",
"co": "^4.6.0",
"qunit": "^2.11.2",
"tracejs": "^0.1.8",
"underscore": "^1.11.0"
},
"devDependencies": {
"chainer": "^0.0.5",
"eslint": "^7.8.1",
"timekeeper": "^2.0.0"
},
"optionalDependencies": {
"istanbul": "0.4.5"
}
}