-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.05 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.05 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "arsenal",
"engines": {
"node": ">=20"
},
"version": "8.3.10",
"description": "Common utilities for the S3 project components",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/scality/Arsenal.git"
},
"author": "Scality Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/Arsenal/issues"
},
"homepage": "https://github.com/scality/Arsenal#readme",
"dependencies": {
"@aws-sdk/client-kms": "^3.975.0",
"@aws-sdk/client-s3": "^3.975.0",
"@aws-sdk/credential-providers": "^3.975.0",
"@aws-sdk/lib-storage": "^3.975.0",
"@azure/identity": "^4.13.0",
"@azure/storage-blob": "^12.31.0",
"@js-sdsl/ordered-set": "^4.4.2",
"@scality/hdclient": "^1.3.1",
"@smithy/node-http-handler": "^4.3.0",
"@smithy/protocol-http": "^5.3.5",
"JSONStream": "^1.3.5",
"agentkeepalive": "^4.6.0",
"ajv": "6.12.3",
"async": "~2.6.4",
"backo": "^1.1.0",
"base-x": "3.0.8",
"base62": "^2.0.2",
"debug": "^4.4.3",
"fcntl": "github:scality/node-fcntl#0.3.0",
"httpagent": "scality/httpagent#1.1.0",
"https-proxy-agent": "^7.0.6",
"ioredis": "^5.8.1",
"ipaddr.js": "^2.2.0",
"joi": "^18.0.1",
"level": "~5.0.1",
"level-sublevel": "~6.6.5",
"mongodb": "^6.20.0",
"node-forge": "^1.3.1",
"prom-client": "^15.1.3",
"simple-glob": "^0.2.0",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0",
"sproxydclient": "github:scality/sproxydclient#8.1.0",
"utf8": "^3.0.0",
"uuid": "^10.0.0",
"werelogs": "scality/werelogs#8.2.2",
"xml2js": "^0.6.2"
},
"optionalDependencies": {
"ioctl": "^2.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@eslint/compat": "^1.4.0",
"@eslint/plugin-kit": "^0.4.0",
"@scality/eslint-config-scality": "scality/Guidelines#8.3.0",
"@sinonjs/fake-timers": "^15.0.0",
"@types/async": "^3.2.24",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.6",
"@types/utf8": "^3.0.3",
"@types/xml2js": "^0.4.14",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^16.4.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.2.3",
"nodemon": "^3.1.10",
"nyc": "^17.1.0",
"sinon": "^21.0.0",
"temp": "^0.9.4",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.46.1"
},
"scripts": {
"build": "tsc",
"build_doc": "cd documentation/listingAlgos/pics; dot -Tsvg delimiterStateChart.dot > delimiterStateChart.svg; dot -Tsvg delimiterMasterV0StateChart.dot > delimiterMasterV0StateChart.svg; dot -Tsvg delimiterVersionsStateChart.dot > delimiterVersionsStateChart.svg",
"coverage": "export NODE_OPTIONS=\"--tls-max-v1.2\" && nyc --clean jest tests --coverage --testTimeout=120000 --forceExit --testPathIgnorePatterns tests/functional/pykmip",
"dev": "nodemon --ext ts --ignore build --exec \"yarn build\"",
"ft_pykmip_test": "jest tests/functional/pykmip",
"ft_test": "jest tests/functional --testTimeout=120000 --forceExit --testPathIgnorePatterns tests/functional/pykmip",
"lint": "eslint $(git ls-files '*ts' ' *.js')",
"lint_md": "mdlint $(git ls-files '*.md')",
"lint_yml": "yamllint $(git ls-files '*.yml')",
"prepare": "yarn build",
"test": "export NODE_OPTIONS=\"--tls-max-v1.2\" && jest tests/unit --detectOpenHandles"
},
"private": true,
"jest": {
"maxWorkers": 1,
"coverageReporters": [
"json"
],
"collectCoverageFrom": [
"lib/**/*.{js,ts}",
"index.js"
],
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.\\.ts?$": "ts-jest"
},
"transformIgnorePatterns": [],
"globals": {
"test-jest": {
"diagnostics": {
"warnOnly": true
}
}
}
},
"resolutions": {
"tar": "^7.5.6"
},
"nyc": {
"tempDirectory": "coverage",
"reporter": [
"lcov",
"text"
]
}
}