-
Notifications
You must be signed in to change notification settings - Fork 7
/
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": "fast-azure-storage",
"version": "4.0.0",
"author": "Jonas Finnemann Jensen <[email protected]>, Elena Solomon <[email protected]>",
"description": "Fast client library for azure storage services",
"license": "MPL-2.0",
"main": "lib/index.js",
"type": "module",
"scripts": {
"test": "mocha test/*.js",
"docs": "yuidoc .",
"push-docs": "npm run docs && git add docs/ && git commit -m 'Update docs' && git subtree push --prefix docs [email protected]:taskcluster/fast-azure-storage.git gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/fast-azure-storage.git"
},
"files": [
"lib"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"debug": "^4.1.1",
"xml2js": "^0.6.0"
},
"resolutions": {
"yuidocjs/**/request": "^2.88.0",
"yuidocjs/**/fresh": "^0.5.2",
"yuidocjs/**/forwarded": "^0.2.0",
"yuidocjs/**/mime": "^3.0.0"
},
"devDependencies": {
"jsdoc": "4.0.3",
"mocha": "10.7.3",
"taskcluster-client": "73.0.0",
"yuidoc-lucid-theme": "jonasfj/yuidoc-lucid-theme",
"yuidocjs": "0.10.2"
},
"renovate": {
"extends": [
"config:base"
],
"packageRules": [
{
"updateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/",
"paths": [
"+(package.json)"
],
"automerge": true
}
]
}
}