forked from mrbatista/loopback-connector-arangodb
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 KB
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
{
"name": "loopback-connector-arangodb",
"version": "1.0.1",
"description": "Loopback ArangoDB Connector",
"main": "index.js",
"keywords": [
"StrongLoop",
"LoopBack",
"ArangoDB",
"DataSource",
"Connector"
],
"scripts": {
"build": "coffee --bare --compile --output lib/ src/arangodb.coffee",
"prepublish": "coffee --bare --compile --output lib/ src/arangodb.coffee",
"test": "node_modules/.bin/mocha test/*.test.coffee -R spec -t 2000 --compilers coffee:coffee-script/register",
"build-test": "npm run build && npm test",
"build-test-debug": "npm run build && DEBUG=loopback:* npm test"
},
"dependencies": {
"aqb": "^2.1.0",
"arangojs": "^5.0.2",
"async": "^1.0.0",
"chance": "^0.7.6",
"debug": "^2.1.1",
"extend": "^2.0.0",
"loopback-connector": "^2.2.0",
"underscore": "^1.8.2"
},
"devDependencies": {
"bluebird": "^2.9.14",
"codo": "^2.0.11",
"coffee-script": "^1.9.1",
"loopback-datasource-juggler": "^2.28.0",
"mocha": "^2.2.1",
"rc": "^0.6.0",
"semicov": "~0.1.1-1",
"semver": "^4.3.1",
"should": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nvdnkpr/loopback-connector-arangodb.git"
},
"author": "Navid Nikpour <navid@nikpour.com>",
"contributors": [{
"name": "Matteo Padovano",
"email": "mrba7ista@gmail.com"
}],
"license": "MIT"
}