-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.27 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
61
62
63
{
"name": "temporal",
"description": "Non-blocking, temporal task sequencing and scheduling.",
"version": "0.7.1",
"homepage": "https://github.com/rwaldron/temporal",
"author": {
"name": "Rick Waldron",
"email": "[email protected]"
},
"contributors": [
{
"name": "Matthieu Dehaussy",
"email": "<[email protected]>"
},
{
"name": "Taha Hesham",
"email": "<[email protected]>"
}
],
"repository": {
"type": "git",
"url": "git://github.com/rwaldron/temporal.git"
},
"bugs": {
"url": "https://github.com/rwaldron/temporal/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rwaldron/temporal/blob/master/LICENSE-MIT"
}
],
"main": "lib/temporal",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt"
},
"dependencies": {},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-contrib-jshint": "latest",
"grunt-contrib-nodeunit": "latest",
"grunt-contrib-watch": "latest",
"grunt-jsbeautifier": "latest"
},
"keywords": [
"schedule",
"task",
"settimeout",
"setinterval",
"nexttick",
"process",
"sequence",
"sequencing",
"loop",
"repeat",
"wait",
"delay",
"sleep"
]
}