-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
73 lines (73 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
73
{
"name": "sails-orientdb",
"version": "0.10.60",
"description": "OrientDB adapter for Waterline / Sails.js ORM",
"main": "./lib/adapter.js",
"scripts": {
"pretest": "./node_modules/.bin/jshint ./lib",
"test": "make test",
"coverage": "make coverage",
"lint": "./node_modules/.bin/jshint ./lib"
},
"repository": {
"type": "git",
"url": "[email protected]:appscot/sails-orientdb.git"
},
"keywords": [
"orientdb",
"orient",
"orm",
"waterline",
"sails",
"sailsjs",
"sails.js",
"graph",
"graphdb"
],
"author": {
"name": "Dario Marcelino",
"email": "[email protected]"
},
"contributors": [
{
"name": "Srinath Janakiraman",
"email": "[email protected]"
},
{
"name": "Gaurav Dhiman",
"email": "[email protected]"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"async": "^1.0.0",
"bluebird": "^3.4.1",
"debug-logger": "^0.4.0",
"lodash": "^3.10.1",
"orientjs": "^2.2.1",
"waterline-criteria": "^1.0.1",
"waterline-cursor": "~0.0.5",
"waterline-sequel-orientdb": "^0.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "~0.3.3",
"istanbul": "^0.4.4",
"jshint": "*",
"mocha": "*",
"waterline-schema": "0.1.18",
"waterline": "0.10.27",
"waterline-adapter-tests": "0.10.11"
},
"waterlineAdapter": {
"type": "orientdb",
"interfaces": [
"semantic",
"queryable",
"associations",
"migratable",
"sql"
],
"waterlineVersion": "~0.10.18"
}
}