-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.82 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
72
{
"name": "waterline",
"description": "An ORM for Node.js and the Sails framework",
"version": "0.11.3",
"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"
},
{
"name": "seerepo",
"github": "https://github.com/balderdashy/waterline/graphs/contributors"
}
],
"dependencies": {
"anchor": "~0.11.0",
"async": "1.5.2",
"bluebird": "3.2.1",
"deep-diff": "0.3.3",
"lodash": "3.10.1",
"prompt": "0.2.14",
"switchback": "2.0.0",
"waterline-criteria": "~0.11.2",
"waterline-schema":"git://github.com/zhengxyit/waterline-schema-saas.git#master"
},
"devDependencies": {
"codeclimate-test-reporter": "0.3.1",
"eslint": "1.10.3",
"espree": "3.0.1",
"istanbul": "0.4.2",
"mocha": "2.4.5",
"sails-memory": "balderdashy/sails-memory",
"should": "8.2.1",
"waterline-adapter-tests": "balderdashy/waterline-adapter-tests#0.11.x"
},
"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": ">=0.10.0 <=5.x.x"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/balderdashy/waterline/issues/new"
}
}