-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 888 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 888 Bytes
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
{
"name": "objection-dynamic-finder",
"version": "0.1.4",
"description": "Dynamic finders for Objection.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/snlamm/objection-dynamic-finder.git"
},
"author": "Shmuel Lamm (@snlamm)",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"knex": "^0.14.2",
"nyc": "^11.4.1",
"objection": "^0.9.4",
"sqlite3": "^3.1.13"
},
"keywords": [
"objection",
"objectionjs",
"dynamic-finders",
"dynamic",
"finders",
"orm",
"plugin",
"plugins",
"findby"
],
"scripts": {
"lint": "eslint index.js",
"test": "ava --verbose",
"test-nyc": "nyc ava --verbose",
"coverage": "nyc report --reporter=text-lcov | coveralls"
}
}