-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
66 lines (66 loc) · 1.33 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
{
"name": "sails-disk",
"version": "2.1.2",
"description": "Persistent local-disk (and/or memory) adapter for Sails.js / Waterline.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run custom-tests",
"custom-tests": "rm -rf .tmp && node test/runner.js",
"lint": "eslint **/*.js *.js --max-warnings=0"
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails-disk.git"
},
"keywords": [
"nedb",
"adapter",
"waterline",
"disk",
"memory",
"localdevdb",
"database",
"sails",
"sails.js",
"sailsjs"
],
"author": "The Sails Company",
"contributors": [
{
"name": "Scott Gress"
},
{
"name": "Cody Stoltman"
},
{
"name": "Mike McNeil"
}
],
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"async": "2.6.4",
"flaverr": "^1.10.0",
"machinepack-fs": "^12.0.1",
"@sailshq/nedb": "^1.8.2"
},
"devDependencies": {
"mocha": "3.0.2",
"@sailshq/eslint": "^4.19.3",
"waterline-adapter-tests": "^1.0.0-2"
},
"waterlineAdapter": {
"waterlineVersion": "^0.13.0",
"interfaces": [
"semantic",
"queryable",
"associations",
"migratable"
],
"features": [
"cross-adapter",
"autoIncrement",
"unique"
]
}
}