forked from balderdashy/waterline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
67
68
69
70
71
{
"name": "waterline",
"description": "An ORM for Node.js and the Sails framework",
"version": "0.10.21",
"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": {
"anchor": "~0.10.2",
"async": "~0.9.0",
"bluebird": "~2.9.15",
"deep-diff": "~0.3.0",
"lodash": "~2.4.1",
"switchback": "~1.1.3",
"prompt": "~0.2.14",
"waterline-criteria": "~0.11.1",
"waterline-schema": "~0.1.17"
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"istanbul": "^0.3.11",
"mocha": "~2.1.0",
"sails-memory": "balderdashy/sails-memory",
"should": "~4.4.0",
"waterline-adapter-tests": "balderdashy/waterline-adapter-tests"
},
"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": "make test",
"prepublish": "npm prune",
"browserify": "rm -rf .dist && mkdir .dist && browserify lib/waterline.js -s Waterline | uglifyjs > .dist/waterline.min.js",
"coverage": "make coverage"
},
"engines": {
"node": "*"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/balderdashy/waterline/blob/master/LICENSE.md"
}
],
"bugs": {
"url": "https://github.com/balderdashy/waterline/issues/new"
}
}