-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 1006 Bytes
/
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
{
"name": "waterline-utils",
"version": "1.4.5",
"description": "Various utilities for working with Waterline queries and adapters.",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test/unit --recursive",
"fasttest": "node ./node_modules/mocha/bin/mocha test/unit --recursive",
"pretest": "npm run lint",
"lint": "eslint lib test",
"benchmark": "node ./node_modules/mocha/bin/mocha test/benchmarks --recursive"
},
"keywords": [
"waterline-query-parser",
"joins",
"auto-migrations",
"sql",
"waterline",
"sails"
],
"author": "Cody Stoltman <[email protected]>",
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"async": "2.6.4",
"flaverr": "^1.1.1",
"fs-extra": "0.30.0",
"qs": "6.4.1"
},
"devDependencies": {
"benchmark": "2.1.1",
"eslint": "4.19.1",
"mocha": "3.0.2"
},
"repository": {
"type": "git",
"url": "[email protected]:sailshq/waterline-utils.git"
}
}