-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "waterline-sql-builder",
"version": "3.0.1",
"description": "Generate SQL (stage 5 query) from a Waterline statement (stage 4 query).",
"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": "node ./node_modules/eslint/bin/eslint **/*.js *.js",
"benchmark": "node ./node_modules/mocha/bin/mocha test/benchmarks --recursive"
},
"keywords": [
"sql",
"waterline",
"sails",
"postgresql",
"postgres",
"mysql",
"oracle",
"mssql",
"knex"
],
"author": "The Sails Company",
"contributors": [
"Cody Stoltman <@particlebanana>"
],
"license": "MIT",
"dependencies": {
"knex": "2.4.2",
"@sailshq/lodash": "^3.10.2",
"waterline-utils": "^1.3.8"
},
"devDependencies": {
"async": "2.0.1",
"benchmark": "2.1.1",
"eslint": "3.5.0",
"mocha": "3.0.2"
},
"repository": {
"type": "git",
"url": "git@github.com:treelinehq/waterline-sql-builder.git"
}
}