-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
94 lines (94 loc) · 2.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "objection-find",
"version": "3.0.1",
"description": "Build search queries for objection.js models using HTTP query parameters.",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"scripts": {
"lint": "eslint --format codeframe \"lib/**/*.js\" \"tests/**/*.js\" index.d.ts",
"lint:fix": "eslint --fix \"lib/**/*.js\" \"tests/**/*.js\"",
"lint:types": "tsc && tsd",
"test": "nyc mocha --slow 10 --timeout 7000 --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",
"test:ci": "npm run lint && npm run lint:types && npm run test",
"coveralls": "cat ./test-coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prettier": "prettier --write \"{lib,tests}/**/*.{js,ts}\" index.d.ts"
},
"author": {
"name": "Sami Koskimäki",
"email": "[email protected]",
"url": "https://github.com/koskimas"
},
"contributors": [
{
"name": "Igor Savin",
"email": "[email protected]",
"url": "https://github.com/kibertoad"
}
],
"repository": {
"type": "git",
"url": "git://github.com/vincit/objection-find.git"
},
"keywords": [
"objection",
"sql",
"query",
"postgresql",
"mysql",
"sqlite3",
"query parameter"
],
"files": [
"API.md",
"README.md",
"LICENSE",
"index.js",
"index.d.ts",
"lib/*"
],
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/node": "^12.19.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"knex": "~0.21.6",
"mocha": "^8.2.0",
"mysql": "^2.18.1",
"nyc": "^15.1.0",
"objection": "^2.2.3",
"pg": "^8.4.1",
"prettier": "^2.0.5",
"sqlite3": "^5.0.0",
"tsd": "^0.13.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"objection": ">=2.0.0 <3.0.0"
},
"engines": {
"node": ">=8"
},
"nyc": {
"description": "test coverage",
"reporter": [
"lcov",
"text"
],
"report-dir": "./test-coverage"
},
"tsd": {
"directory": "tests/types"
}
}