forked from Wiredcraft/loopback-connector-couchbaseX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "loopback-connector-couchbasex",
"version": "1.2.4",
"description": "LoopBack Couchbase Connector for 3,5 or higher version",
"author": {
"name": "Wiredcraft",
"email": "[email protected]",
"url": "http://wiredcraft.com"
},
"contributors": [
"Makara Wang",
"Charlie Li",
"Chopper Lee"
],
"keywords": [
"LoopBack",
"Couchbase",
"DataSource",
"Connector"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Wiredcraft/loopback-connector-couchbaseX"
},
"bugs": {
"url": "https://github.com/Wiredcraft/loopback-connector-couchbaseX/issues"
},
"homepage": "https://github.com/Wiredcraft/loopback-connector-couchbaseX",
"dependencies": {
"bluebird": "^3.5.1",
"couchbase": "^2.5.0",
"debug": "^3.1.0",
"loopback-connector": "^4.4.0",
"loopback-connector-nosql": "^1.0.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"benchmark": "^2.1.4",
"coveralls": "^3.0.6",
"eslint": "^6.2.2",
"eslint-config-wcl-backend": "^0.4.0",
"husky": "^3.0.4",
"istanbul": "^0.4.5",
"loopback-datasource-juggler": "^3.13.0",
"mocha": "^6.2.2",
"should": "^13.1.3"
},
"scripts": {
"lint": "eslint . --fix",
"benchmarks": "make benchmarks",
"test": "make test",
"cb4": "export COUCHBASE=cb4 && yarn test",
"cb5": "export COUCHBASE=cb5 && yarn test",
"cb6": "export COUCHBASE=cb6 && yarn test",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "make lint",
"prepush": "make lint",
"version": "conventional-changelog -p angular -i History.md -s -r 1 && git add History.md"
}
}