forked from rwaldron/temporal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "temporal",
"description": "Non-blocking, temporal task sequencing and scheduling.",
"version": "0.5.0",
"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": {
"es6-shim": "latest"
},
"devDependencies": {
"grunt": "0.4.1",
"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" ]
}