-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.18 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
{
"name": "catbox-azure-table",
"description": "Azure Table Storage adapter for catbox",
"version": "6.0.0",
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"contributors": [],
"homepage": "https://github.com/paed01/catbox-azure-table",
"repository": {
"type": "git",
"url": "git://github.com/paed01/catbox-azure-table"
},
"bugs": {
"url": "https://github.com/paed01/catbox-azure-table/issues"
},
"main": "index.js",
"license": "MIT",
"keywords": [
"catbox",
"cache",
"azure",
"storage",
"table"
],
"files": [
"index.js",
"lib/"
],
"peerDependencies": {
"@azure/data-tables": ">=13",
"@hapi/catbox": ">=11"
},
"devDependencies": {
"@azure/data-tables": "^13.0.0",
"@hapi/catbox": "^11.1.1",
"@hapi/code": "^8.0.5",
"@hapi/lab": "^24.4.0",
"chronokinesis": "^3.1.2",
"eslint": "^8.4.1",
"nock": "^13.2.1"
},
"scripts": {
"test": "lab -cL",
"test-cov": "lab -cL -r console -o stdout -r lcov -o coverage.lcov"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/paed01/catbox-azure-table/raw/master/LICENSE"
}
]
}