-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
executable file
·56 lines (56 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
55
56
{
"name": "sails-couchdb",
"version": "0.10.3",
"description": "CouchDB adapter for Sails",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha test/unit -t 10000 && node test/integration/runner -R spec -b"
},
"repository": {
"type": "git",
"url": "https://github.com/codeswarm/sails-couchdb-orm.git"
},
"keywords": [
"couchdb",
"couch",
"adapter",
"sails",
"waterline",
"orm",
"sailsjs",
"sails.js",
"codeswarm"
],
"author": [
"Pedro Teixeira <[email protected]>",
"Mike Hostetler <[email protected]>"
],
"contributors": [
"Matheus Hoffmann Silva <[email protected]>",
"Mike McNeil <@mikermcneil>"
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"nano": "~5.7.1",
"xtend": "~2.1.2",
"cookie": "~0.1.1",
"handlebars": "~2.0.0-alpha.2",
"deep-merge": "~0.3.1",
"underscore": "^1.6.0",
"async": "^0.7.0"
},
"devDependencies": {
"waterline-adapter-tests": "~0.10.0",
"mocha": "*",
"root-require": "~0.2.0",
"captains-log": "~0.10.6"
},
"sailsAdapter": {
"sailsVersion": "~0.10.0",
"implements": [
"semantic",
"queryable"
]
}
}