forked from balderdashy/waterline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "waterline",
"description": "An ORM for Node.js and the Sails framework",
"version": "0.13.0-rc9",
"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": {
"@sailshq/lodash": "^3.10.2",
"anchor": "^1.1.0",
"async": "2.0.1",
"flaverr": "^1.0.0",
"lodash.issafeinteger": "4.0.4",
"parley": "^2.2.0",
"rttc": "^10.0.0-1",
"waterline-schema": "^1.0.0-7",
"waterline-utils": "^1.3.7"
},
"devDependencies": {
"eslint": "3.5.0",
"mocha": "3.0.2"
},
"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": "npm run custom-tests && nodever=`node -e \"console.log('\\`node -v\\`'[1]);\"` && if [ $nodever != \"0\" ]; then npm run lint; fi",
"custom-tests": "node ./node_modules/mocha/bin/mocha test --recursive",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --ignore-pattern 'test/'",
"prepublish": "npm prune",
"browserify": "rm -rf .dist && mkdir .dist && browserify lib/waterline.js -s Waterline | uglifyjs > .dist/waterline.min.js"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/balderdashy/waterline/issues/new"
}
}