forked from balderdashy/sails-disk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "sails-disk",
"version": "0.11.0",
"description": "Persistent local-disk adapter for Sails.js / Waterline",
"main": "lib/adapter.js",
"scripts": {
"test": "rm -rf .tmp && node test/runner.js",
"prepublish": "npm prune"
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails-disk.git"
},
"keywords": [
"waterline",
"database",
"disk",
"sails",
"sails.js",
"sailsjs"
],
"author": "Mike McNeil",
"contributors": [
{
"name": "Cody Stoltman"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"lodash": "^4.17.15",
"waterline-criteria": "git+https://github.com/mobilusoss/waterline-criteria.git#v1.1.0",
"waterline-errors": "~0.10.1",
"fs-extra": "0.30.0",
"async": "~3.1.0",
"waterline-cursor": "git+https://github.com/mobilusoss/waterline-cursor.git#v0.1.0"
},
"devDependencies": {
"mocha": "~2.5.3",
"waterline-adapter-tests": "~0.12.0",
"captains-log": "~0.11.1"
},
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": [
"cross-adapter"
]
}
}