-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 857 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 857 Bytes
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": "node-delay",
"version": "1.0.1",
"description": "Yet another tiny library for managing asynchronous control flow. Port of the Mojo::IOLoop::Delay Perl library.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/amarnus/node-delay.git"
},
"scripts": {
"test": "nodeunit test/delay.js"
},
"keywords": [
"async",
"control",
"flow"
],
"author": "Amarnath Ravikumar <amarnus@gmail.com>",
"license": "Artistic-2.0",
"bugs": {
"url": "https://github.com/amarnus/node-delay/issues"
},
"homepage": "https://github.com/amarnus/node-delay",
"dependencies": {
"lodash.assign": "^3.2.0",
"lodash.keys": "^3.1.2",
"lodash.slice": "^3.0.0",
"lodash.values": "^3.0.0"
},
"devDependencies": {
"lodash.flatten": "^3.0.2",
"nodeunit": "^0.9.1"
}
}