-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
67 lines (67 loc) · 1.43 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
{
"name": "sails-arangodb",
"version": "0.3.0",
"description": "Arangodb adapter for Sails / Waterline",
"main": "./lib/adapter.js",
"scripts": {
"test": "gulp waterline; gulp test",
"lint": "jshint lib/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/gabriel-letarte/sails-arangodb.git"
},
"keywords": [
"arangodb",
"adapter",
"sails",
"waterline",
"sails.js",
"plugin"
],
"author": "Gabriel Letarte <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"aqb": ">=1.8.3",
"arangojs": "5.x.x",
"async": "^0.9.0",
"debug": "^2.3.3",
"lodash": ">=3.10.1",
"q": "^1.0.1"
},
"devDependencies": {
"captains-log": "~0.11.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-jsdoc3": "^1.0.1",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^4.1.0",
"gulp-watch": "^4.3.11",
"jshint": "^2.6.3",
"mocha": "*",
"should": "^11.2.1",
"waterline": "^0.11.11",
"waterline-adapter-tests": "~0.11.1"
},
"waterlineAdapter": {
"type": "arangodb",
"interfaces": [
"semantic",
"queryable"
],
"waterlineVersion": "~0.11.0"
},
"jshintConfig": {
"bitwise": true,
"curly": false,
"eqeqeq": false,
"latedef": true,
"shadow": "inner",
"undef": true,
"unused": "vars",
"node": true,
"sub": true
}
}