forked from balderdashy/waterline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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": "waterline",
"description": "An ORM for Node.js and the Sails framework",
"version": "0.10.1",
"homepage": "http://github.com/balderdashy/waterline",
"contributors": [
{
"name": "particlebanana",
"github": "https://github.com/particlebanana"
},
{
"name": "mikermcneil",
"github": "https://github.com/mikermcneil"
},
{
"name": "zolmeister",
"github": "https://github.com/zolmeister"
}
],
"dependencies": {
"lodash": "~2.4.1",
"async": "~0.9.0",
"anchor": "~0.10.0",
"q": "~1.0.1",
"waterline-schema": "~0.1.11",
"node-switchback": "~0.1.0",
"waterline-criteria": "~0.10.7",
"prompt": "~0.2.12",
"deep-diff": "~0.1.6"
},
"devDependencies": {
"mocha": "1.9.x",
"should": "~2.1.1"
},
"keywords": [
"mvc",
"orm",
"mysql",
"postgresql",
"redis",
"mongodb",
"active-record",
"waterline",
"sails",
"sails.js"
],
"repository": "git://github.com/balderdashy/waterline.git",
"main": "./lib/waterline",
"scripts": {
"test": "mocha test --recursive",
"prepublish": "npm prune",
"browserify": "rm -rf .dist && mkdir .dist && browserify lib/waterline.js -s Waterline | uglifyjs > .dist/waterline.min.js"
},
"engines": {
"node": "*"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/balderdashy/waterline/blob/master/LICENSE.md"
}
],
"bugs": {
"url": "https://github.com/balderdashy/waterline/issues/new"
}
}