-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
42 lines (42 loc) · 907 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
{
"name": "fawn",
"version": "2.1.3",
"description": "Promise based library for transactions in MongoDB",
"main": "index.js",
"scripts": {
"test": "mocha tests/all.tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/e-oj/Fawn"
},
"keywords": [
"mongoose",
"mongoDB",
"mongoose transaction",
"mongoose transactions",
"mongoose transact",
"mongoose atomic",
"atomic mongoose",
"mongodb transaction",
"mongodb transactions",
"mongodb transact",
"mongodb atomic",
"atomic mongodb",
"multi phase commit",
"two phase commit",
"transaction"
],
"author": "Emmanuel Olaojo",
"license": "MIT",
"dependencies": {
"bluebird": "3.5.0",
"gridfs-stream": "1.1.1",
"mongoose": "4.12.3"
},
"devDependencies": {
"chai": "4.1.0",
"chai-as-promised": "7.1.1",
"mocha": "3.4.2"
}
}