-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
30 lines (30 loc) · 1.08 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
{
"name" : "wait.for-es6",
"version" : "0.1.0",
"description" : "Sequential programming for node.js -and the browser-. End of callback hell - Original Wait.for, implemented using upcoming javascript/ES6-Harmony generators",
"author" : {
"name" : "Lucio Tato",
"email" : "[email protected]",
"url" : "http://github.com/luciotato"
},
"keywords" : [ "fiber", "fibers", "generator", "coroutine", "thread", "sycn", "async", "parallel", "worker", "future", "promise", "wait", "Wait.for", "callback hell", "pyramid of doom" ],
"homepage" : "http://github.com/luciotato/waitfor-ES6",
"license" : "Creative Commons, MIT",
"bugs" : {
"url" : "http://github.com/luciotato/waitfor-ES6/issues"
},
"repository" : {
"type" : "git",
"url" : "git://github.com/luciotato/waitfor-ES6.git"
},
"main" : "./waitfor.js",
"engines" : {
"node" : ">=0.11.6"
},
"engineStrict":true,
"scripts" : {
"test" : "node --harmony test/test",
"parallel" : "node --harmony parallel-tests",
"demo" : "node --harmony waitfor-demo"
}
}