-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 942 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
46
{
"name": "am-mongo",
"keywords": [
"mongo",
"mongodb",
"MongoClient",
"collection",
"ES6",
"await",
"promise",
"ExtendedPromise",
"chain",
"yield",
"filter",
"forEach",
"map",
"mapFilter",
"generator",
"wait",
"all",
"async/await"
],
"version": "0.1.0",
"description": "Extension to add mongo collection methods to async-methods so they return Extended Promises",
"main": "am.js",
"scripts": {
"test-mongo": "mocha am-mongo-tests",
"test": "mocha am-tests && mocha am-mongo-tests",
"test-am": "mocha am-tests"
},
"repository": {
"type": "git",
"url": "github.com/ingenious/am-mongo"
},
"author": "Stephen Giles",
"license": "ISC",
"dependencies": {
"async-methods": "^0.2.15",
"mongodb": "^3.0.0"
},
"devDependencies": {
"intercept-stdout": "^0.1.2",
"mocha": "^4.0.0",
"mongo-mock": "^3.8.1"
}
}