-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
99 lines (99 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "lounge",
"description": "Simple Mongoose-inspired ODM for Couchbase",
"version": "0.27.0",
"homepage": "https://github.com/bojand/lounge",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bojand/lounge.git"
},
"bugs": {
"url": "http://github.com/bojand/lounge/issues"
},
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"author": {
"name": "Bojan Djurkovic <[email protected]>"
},
"scripts": {
"test": "npm run test-mocha && npm run test-ava",
"test-mocha": "LOUNGE_COUCHBASE_MOCK=true mocha --exit test/*.spec.js",
"test-ava": "LOUNGE_COUCHBASE_MOCK=true ava -v -s",
"cover": "LOUNGE_COUCHBASE_MOCK=true nyc npm run test",
"docs:api": "echo '# API Reference\\n' > docs/api/readme.md && jsdoc2md lib/*.js >> docs/api/readme.md",
"docs:dev": "vuepress dev docs",
"docs:build": "npm run docs:api && vuepress build docs"
},
"dependencies": {
"async": "^3.0.1",
"clone": "^2.1.2",
"couchbase-driver": "^0.5.1",
"debug": "^4.0.0",
"escape-string-regexp": "^2.0.0",
"grappling-hook-lounge": "~1.0.0",
"inflection": "^1.8.0",
"lodash": "^4.17.11",
"memoizee": "^0.4.14",
"mpath": "^0.6.0",
"traverse": "^0.6.6",
"uuid": "^3.3.2",
"with-callback": "^1.0.2"
},
"peerDependencies": {
"couchbase": "^2.4.0"
},
"devDependencies": {
"ava": "^2.1.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"couchbase": "^2.6.0",
"jsdoc-to-markdown": "^5.0.0",
"lodash3": "~3.10.0",
"markdown-it-highlightjs": "^3.0.0",
"marky": "^1.2.0",
"mocha": "^6.0.2",
"nyc": "^14.1.1",
"standard": "^12.0.0",
"validator": "^11.0.0",
"vuepress": "^1.0.1"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"directories": {
"test": "test"
},
"standard": {
"globals": [
"describe",
"expect",
"it"
]
},
"keywords": [
"couchbase",
"document",
"model",
"schema",
"database",
"odm",
"data",
"datastore",
"query",
"nosql",
"orm",
"db"
],
"config": {
"nyc": {
"include": [
"lib/*.js"
]
}
}
}