-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "nekodb",
"version": "2.4.0",
"description": "Tiny ODM for MongoDB/NeDB",
"main": "ko.js",
"scripts": {
"test": "tape ./test/test.js | tap-spec --color",
"coverage": "nyc tape ./test/test.js | tap-spec",
"coverageHTML": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cutejs/nekodb.git"
},
"keywords": [
"database",
"ODM",
"mongodb",
"nedb",
"schema",
"object",
"modeling",
"document",
"model"
],
"author": "Peter Fesz-Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/cutejs/nekodb/issues"
},
"homepage": "https://github.com/cutejs/nekodb#readme",
"devDependencies": {
"nyc": "^14.1.1",
"rimraf": "^2.6.2",
"tap-spec": "^5.0.0",
"tape": "^4.8.0"
},
"dependencies": {
"deep-equal": "^1.0.1",
"isemail": "^3.1.1",
"merge": "^1.2.0",
"nedb": "^1.8.0",
"traverse": "^0.6.6",
"url-regex": "^4.1.1"
},
"optionalDependencies": {
"mongodb": "^3.0.2"
}
}