forked from helnokaly/adonis-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 960 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 960 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
42
43
44
{
"name": "adonis-cache",
"version": "0.3.0",
"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": "^3.5.0",
"co-mocha": "^1.1.3",
"ioredis": "^3.1.2",
"knex": "^0.12.2",
"mocha": "^3.1.0",
"sqlite3": "3.1.8",
"standard": "^10.0.3"
},
"dependencies": {
"co": "^4.6.0",
"lodash": "^4.16.2",
"adonis-commands": "^2.1.5"
},
"standard": {
"globals": [
"describe",
"it"
]
}
}