-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "loopback-edge-arangodb",
"version": "1.3.2",
"description": "A mixin to handle arangodb edges for loopback models",
"main": "mixins/edge.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint src/**/*.js test/**/*.js",
"test": "cross-env NODE_ENV=test nyc mocha",
"build": "babel src -d lib && babel src -d dist",
"coverage:ci": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm run build",
"nsp": "nsp check"
},
"files": [
"lib",
"mixins",
"dist"
],
"keywords": [
"StrongLoop",
"LoopBack",
"ArangoDB",
"Edge",
"Graph",
"DataSource",
"Connector"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrbatista/loopback-edge-arangodb.git"
},
"author": "Matteo Padovano <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrbatista/loopback-edge-arangodb/issues"
},
"homepage": "https://github.com/mrbatista/loopback-edge-arangodb#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"debug": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^3.14.0",
"eslint-config-loopback": "^8.0.0",
"faker": "^4.1.0",
"loopback": "^3.17.1",
"loopback-connector-arangodb": "^2.0.2",
"loopback-datasource-juggler": "^3.13.0",
"mocha": "^4.0.1",
"nsp": "^2.8.0",
"nyc": "^11.3.0",
"supertest": "^3.1.0"
}
}