-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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-n1ql-mixin",
"version": "1.2.0",
"description": "A mixin to use n1ql(couchbase) via loopback filter",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "make test",
"test-cov": "make test-cov",
"test-coveralls": "make test-coveralls",
"start": "make start",
"start-dev": "make start-dev",
"start-staging": "make start-staging",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "make lint",
"prepush": "make lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Wiredcraft/loopback-n1ql-mixin"
},
"keywords": [
"loopback",
"strongloop",
"mixin",
"n1ql",
"couchbase"
],
"author": {
"name": "Wiredcraft",
"email": "[email protected]",
"url": "https://wiredcraft.com/"
},
"contributors": [
"Ray Wang"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Wiredcraft/loopback-n1ql-mixin/issues"
},
"homepage": "https://github.com/Wiredcraft/loopback-n1ql-mixin#readme",
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^5.15.3",
"eslint-config-wcl-backend": "^0.3.0",
"istanbul": "^1.1.0-alpha.1",
"loopback": "^3.22.0",
"loopback-connector": "^4.4.0",
"loopback-datasource-juggler": "^3.23.0",
"mocha": "^4.0.1",
"nyc": "^13.1.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"debug": "^4.1.1",
"http-errors": "^1.7.2",
"loopback-connector-couchbase5": "^0.0.2"
}
}