forked from balderdashy/sails-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.43 KB
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
{
"name": "@traverse-data/sails-memory",
"version": "0.10.10",
"description": "Non-persistent in-memory adapter for Sails.js / Waterline",
"main": "lib/adapter.js",
"scripts": {
"test": "node test/runner.js",
"prepublish": "npm prune",
"release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git://github.com/TraverseData/sails-memory.git"
},
"keywords": [
"waterline",
"database",
"memory",
"sails",
"sails.js",
"sailsjs"
],
"author": "Mike McNeil",
"contributors": [
{
"name": "Cody Stoltman"
},
{
"name": "Justin Herter"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"lodash": "3.10.1",
"waterline-criteria": "1.0.1",
"waterline-errors": "0.10.1",
"async": "1.5.2",
"waterline-cursor": "0.0.7"
},
"devDependencies": {
"mocha": "2.5.3",
"waterline-adapter-tests": "~0.12.1"
},
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": [
"cross-adapter",
"unique",
"autoIncrement.sequential"
]
},
"bugs": {
"url": "https://github.com/TraverseData/sails-memory/issues"
},
"homepage": "https://github.com/TraverseData/sails-memory"
}