-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "@brainnit/adonisjs-scout",
"version": "0.3.3",
"description": "Adonis Scout provides a driver based solution for searching your Lucid models, just like Laravel Scout.",
"keywords": [
"adonis",
"adonis-framework",
"adonis-scout",
"search",
"elasticsearch"
],
"main": "index.js",
"repository": "git@github.com:brainnit/adonisjs-scout.git",
"scripts": {
"test": "jest --coverage --runInBand",
"test:watch": "jest --runInBand --watch",
"lint": "standard"
},
"author": "João Pedro Barros <joao@joaopedrobarros.com.br>",
"license": "MIT",
"standard": {
"globals": [
"use"
],
"env": {
"node": true,
"jest": true,
"es6": true
}
},
"dependencies": {
"@adonisjs/generic-exceptions": "^3.0.1",
"bluebird": "^3.5.3",
"bodybuilder": "^2.2.17",
"debug": "^4.1.1",
"js-base64": "^2.5.1",
"lodash": "^4.17.11",
"macroable": "^2.0.1",
"pretty-hrtime": "^1.0.3",
"require-all": "^3.0.0"
},
"devDependencies": {
"@adonisjs/ace": "^5.0.8",
"@adonisjs/fold": "^4.0.9",
"@adonisjs/lucid": "^6.1.3",
"@adonisjs/sink": "^1.0.17",
"dotenv": "^6.2.0",
"elasticsearch": "^15.4.1",
"jest": "^24.1.0",
"nock": "^10.0.6",
"sinon": "^7.2.4",
"sleep-promise": "^8.0.1",
"sqlite3": "^4.0.6",
"standard": "^12.0.1"
},
"peerDependencies": {
"@adonisjs/framework": "^5.0.12"
}
}