-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.21 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": "azure-table-query-recursive",
"version": "0.0.6",
"description": "Exports an async recurcive function to fetch more than 1000 entities from azure storage using continuation token.",
"main": "src/index.js",
"scripts": {
"lint": "xo",
"test": "jest --collectCoverage=true",
"test-ci": "jest --config config.json --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ThanosDi/azure-table-query-recursive.git"
},
"license": "MIT",
"dependencies": {
"azure-storage": "^2.10.3"
},
"devDependencies": {
"coveralls": "^3.1.0",
"husky": "^3.0.4",
"jest": "^26.6.1",
"lint-staged": "^10.5.0",
"nodemon": "^2.0.6",
"xo": "^0.34.1"
},
"keywords": [
"azure",
"table storage",
"continuation token",
"query azure table storage",
"query azure table storage recursive",
"async azure table storage",
"await azure table storage"
],
"lint-staged": {
"*": [
"xo --fix",
"git add"
]
},
"xo": {
"prettier": true,
"envs": [
"jest",
"node",
"browser"
],
"rules": {
"camelcase": 1
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
}
}