forked from Vincit/objection-find
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "objection-find",
"version": "0.2.0",
"description": "Build search queries for objection.js models using HTTP query parameters.",
"main": "objection-find.js",
"license": "MIT",
"scripts": {
"test": "istanbul --config=.istanbul.yml cover _mocha -- --slow 10 --timeout 5000 --reporter spec tests/test.js",
"test-only": "mocha --slow 10 --timeout 50000 --reporter spec tests/test.js",
"perf-test": "node tests/perf.js",
"perf-test-init": "node tests/perf-init.js",
"coveralls": "cat ./test-coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": {
"name": "Sami Koskimäki",
"email": "sami.koskimaki@vincit.com",
"url": "https://github.com/koskimas"
},
"repository": {
"type": "git",
"url": "git://github.com/vincit/objection-find.git"
},
"keywords": [
"objection",
"sql",
"query",
"postgresql",
"mysql",
"sqlite3",
"query parameter"
],
"files": [
"README.md",
"LICENSE",
"objection-find.js",
"lib/*"
],
"dependencies": {
"bluebird": "^2.9.24",
"lodash": "^3.9.0"
},
"devDependencies": {
"objection": "^0.5.0",
"coveralls": "^2.11.2",
"expect.js": "^0.3.1",
"istanbul": "^0.3.15",
"knex": "^0.8.3",
"mocha": "^2.2.4",
"mysql": "^2.7.0",
"pg": "^4.4.0",
"sqlite3": "^3.0.8"
}
}