-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
72 lines (72 loc) · 1.58 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
{
"name": "loopback-connector-arangodb",
"version": "2.0.5",
"description": "Loopback ArangoDB Connector",
"main": "index.js",
"keywords": [
"StrongLoop",
"LoopBack",
"ArangoDB",
"DataSource",
"Connector"
],
"scripts": {
"prepublishOnly": "coffee -c -m -o lib/ src/",
"test": "NODE_ENV=test nyc mocha",
"coverage:ci": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"aqb": "^2.1.0",
"arangojs": "^5.7.0",
"async": "^2.3.0",
"chance": "^1.0.12",
"debug": "^3.1.0",
"extend": "^3.0.0",
"loopback-connector": "^4.4.0",
"underscore": "^1.8.2"
},
"devDependencies": {
"bluebird": "^3.5.0",
"codo": "^2.0.11",
"coffeescript": "^2.3.1",
"coveralls": "^3.0.1",
"loopback-datasource-juggler": "/~https://github.com/strongloop/loopback-datasource-juggler#2.x",
"mocha": "^3.5.3",
"moment": "^2.22.1",
"nyc": "^11.8.0",
"rc": "^1.2.1",
"semver": "^5.3.0",
"should": "^8.4.0"
},
"repository": {
"type": "git",
"url": "/~https://github.com/mrbatista/loopback-connector-arangodb.git"
},
"author": "Navid Nikpour <navid@nikpour.com>",
"contributors": [
{
"name": "Matteo Padovano",
"email": "mrba7ista@gmail.com"
}
],
"license": "MIT",
"nyc": {
"extension": [
".coffee"
],
"exclude": [
"server/server.js",
"coverage/**",
"test/**"
],
"reporter": [
"lcov",
"text-summary"
],
"check-coverage": true,
"statements": 66,
"branches": 67,
"functions": 90,
"lines": 67
}
}