-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
59
60
{
"name": "nedb-mongoose-driver",
"version": "2.0.4",
"description": "A Mongoose driver for NeDB.",
"main": "index.js",
"files": [
"lib",
"index.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"precommit": "npm run test",
"prepush": "npm run test",
"test": "mocha tests/*.test.js tests/**/*.test.js",
"test-cov": "nyc cover --report text --report html _mocha tests/*.test.js"
},
"repository": {
"type": "git",
"url": "[email protected]:czwbig/nedb-mongoose-driver.git"
},
"keywords": [
"nedb",
"mongoose",
"mongoose driver"
],
"author": {
"name": "caozhiwu",
"email": "[email protected]"
},
"contributors": [
{
"name": "Warren Seine, wangshijun",
"email": "[email protected]"
},
{
"name": "caozhiwu",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/czwbig/nedb-mongoose-driver/issues"
},
"homepage": "https://github.com/czwbig/nedb-mongoose-driver#readme",
"dependencies": {
"bson": "~1.0.4",
"debug": "^4.2.0",
"mongoose": "^4.13.21",
"nedb-for-mongoose": "^3.0.3",
"ramda": "^0.27.1"
},
"devDependencies": {
"fs-extra": "^9.0.1",
"mocha": "8.1.3",
"nyc": "15.1.0",
"power-assert": "1.6.1"
}
}