-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.16 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
{
"name": "nodeunit-async",
"version": "1.2.1",
"author": "Aaron Silverman",
"license": "MIT",
"description": "Lighweight wrapper for nodeunit for running asychronous and database-dependent tests",
"keywords": [
"nodeunit",
"async",
"unit",
"test",
"unittest"
],
"main": "index.js",
"scripts": {
"test": "nodeunit test/testNodeunitAsync.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Zugwalt/nodeunit-async.git"
},
"dependencies": {
"async": "~0.2.9",
"colors": "^1.0.3"
},
"devDependencies": {
"nodeunit": "~0.9.0"
},
"readme": "Lightweight wrapper for running asynchronous nodeunit (https://github.com/caolan/nodeunit) tests.\n Particularly useful for when you want common global setup or teardown functions run for each test across multiple files, and/or fixture setup or teardown functions run once before and after all tests.\n Designed for unit tests written using async's (https://github.com/caolan/async) auto and series methods.",
"readmeFilename": "README.md",
"homepage": "https://github.com/Zugwalt/nodeunit-async",
"_id": "[email protected]",
"_from": "nodeunit-async@"
}