forked from yortus/asyncawait
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.17 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
{
"name": "asyncawait",
"description": "async/await for node.js",
"version": "3.0.0",
"keywords": [
"async/await",
"async",
"await",
"yield",
"control flow",
"coroutine",
"generator",
"callback",
"callback hell",
"pyramid of doom",
"fiber",
"typescript",
"coffeescript",
"asynchronous",
"synchronous"
],
"main": "index.js",
"homepage": "https://github.com/yortus/asyncawait",
"repository": {
"type": "git",
"url": "git://github.com/yortus/asyncawait.git"
},
"bugs": {
"url": "http://github.com/yortus/asyncawait/issues"
},
"license": "MIT",
"author": {
"name": "Troy Gerwien",
"email": "yortus@gmail.com",
"url": "http://github.com/yortus/"
},
"readmeFilename": "README.md",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "mocha"
},
"dependencies": {
"bluebird": "^3.1.1",
"fibers": "^4.0.2",
"lodash": "^4.17.12"
},
"devDependencies": {
"async": "^1.4.2",
"asyncx": "^0.4.5",
"chai": "^3.2.0",
"co": "^4.6.0",
"mocha": "^5.2.0",
"mock-fs": "^3.1.0",
"rewire": "^2.3.4",
"typescript": "1.7.5"
}
}