-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 960 Bytes
/
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": "async-methods",
"keywords": [
"asynchronous",
"ES6",
"async",
"synchronous",
"promise",
"ExtendedPromise",
"chain",
"co",
"yield",
"filter",
"forEach",
"map",
"mapfilter",
"generator",
"wait",
"all",
"reject",
"async/await",
"await"
],
"author": {
"name": "Stephen Giles"
},
"repository": {
"type": "git",
"url": "https://github.com/ingenious/async-methods.git"
},
"description": "co-like wrapper for chaining asyncronous and syncronous processes in nodejs with support for generators/yield and async/await",
"version": "1.0.1",
"main": "am.js",
"dependencies": {},
"devDependencies": {
"am-mongo": "*",
"intercept-stdout": "^0.1.2",
"mocha": "^4.0.1"
},
"readmeFilename": "README.md",
"scripts": {
"test": " mocha ./tests && mocha ./extend-test/extend.js",
"test-extend": "mocha ./extend-test/extend.js"
}
}