forked from balderdashy/sails-adapter-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.15 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
{
"name": "sails-firebase",
"version": "0.1.6",
"description": "Sails.js/Waterline adapter for Firebase",
"main": "index.js",
"scripts": {
"test": "node test/integration/runner -R spec -b"
},
"repository": {
"type": "git",
"url": "https://github.com/jpventura/sails-firebase.git"
},
"keywords": [
"firebase",
"sails",
"waterline",
"orm"
],
"author": "JP Ventura <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"contributors": [
{
"name": "JP Ventura",
"email": "[email protected]"
},
{
"name": "Mike McNeil",
"email": "[email protected]"
}
],
"dependencies": {
"async": "2.5.0",
"bluebird": "3.5.0",
"firebase-admin": "5.2.1",
"lodash": "4.17.4",
"waterline-criteria": "2.0.0",
"waterline-errors": "0.10.1"
},
"devDependencies": {
"captains-log": "~1.0.2",
"mocha": "3.5.0",
"waterline-adapter-tests": "git://github.com/jpventura/waterline-adapter-tests.git#v0.12.3"
},
"waterlineAdapter": {
"type": "sails-firebase",
"interfaces": [
"semantic"
],
"waterlineVersion": "~0.12.1"
}
}