forked from qunitjs/node-qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 964 Bytes
/
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
{
"name": "qunit",
"description": "A port of QUnit unit testing framework to nodejs",
"version": "0.5.2",
"author": "Oleg Slobodskoi <oleg008@gmail.com>",
"contributors": [
{"name": "Jonathan Buchanan"},
{"name": "Ashar Voultoiz"}
],
"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.x"},
"scripts": {
"test": "make test"
},
"dependencies": {
"underscore": ">= 1.1.7",
"argsparser": ">= 0.0.6",
"cli-table": ">= 0.0.1",
"bunker": ">= 0.1.1",
"tracejs": ">= 0.1.3"
},
"devDependencies": {
"chainer": ">= 0.0.5"
},
"licenses": [
{
"type": "MIT",
"url": "http: //www.opensource.org/licenses/mit-license.php"
}
]
}