-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 883 Bytes
/
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
{
"name": "adonis-cache",
"version": "0.3.4",
"description": "Cache provider for AdonisJs framework",
"scripts": {
"test": "node node_modules/.bin/mocha",
"lint": "standard src/**/*.js test/*.js providers/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helnokaly/adonis-cache.git"
},
"keywords": [
"adonisjs",
"adonis",
"cache",
"caching"
],
"author": "Hany El Nokaly",
"license": "MIT",
"homepage": "https://github.com/helnokaly/adonis-cache",
"devDependencies": {
"@adonisjs/ace": "^4.0.5",
"@adonisjs/fold": "^4.0.2",
"chai": "^4.1.2",
"ioredis": "^3.2.2",
"knex": "^0.16.3",
"mocha": "^4.0.1",
"sqlite3": "^4.0.6",
"standard": "^10.0.3"
},
"dependencies": {
"lodash": "^4.17.11"
},
"standard": {
"globals": [
"describe",
"it"
]
}
}