forked from qunitjs/node-qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.14 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
{
"name": "qunit",
"description": "QUnit testing framework for nodejs",
"version": "0.7.6",
"author": "Oleg Slobodskoi <[email protected]>",
"contributors": [
{
"name": "Jonathan Buchanan"
},
{
"name": "Ashar Voultoiz"
},
{
"name": "Drew Fyock"
}
],
"repository": {
"type": "git",
"url": "http://github.com/kof/node-qunit.git"
},
"keywords": [
"TDD",
"QUnit",
"unit",
"testing",
"tests",
"async"
],
"bin": {
"qunit": "./bin/cli.js"
},
"engines": {
"node": ">=0.6.0 < 0.12.0"
},
"scripts": {
"test": "node --harmony ./test/testrunner.js"
},
"dependencies": {
"argsparser": "^0.0.6",
"cli-table": "^0.3.0",
"co": "^3.0.6",
"freeport": "^1.0.3",
"qunitjs": "1.10.0",
"tracejs": "^0.1.8",
"underscore": "^1.6.0"
},
"devDependencies": {
"chainer": "^0.0.5",
"timekeeper": "^0.0.4"
},
"optionalDependencies": {
"istanbul": "https://github.com/gotwarlost/istanbul/tarball/harmony"
},
"licenses": [
{
"type": "MIT",
"url": "http: //www.opensource.org/licenses/mit-license.php"
}
]
}