-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
124 lines (124 loc) · 3.56 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
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
{
"name": "arsenal",
"engines": {
"node": ">=20"
},
"version": "8.2.13",
"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": {
"@azure/identity": "^4.9.1",
"@azure/storage-blob": "^12.25.0",
"@js-sdsl/ordered-set": "^4.4.2",
"@scality/hdclient": "^1.3.1",
"JSONStream": "^1.3.5",
"agentkeepalive": "^4.6.0",
"ajv": "6.12.3",
"async": "~2.6.4",
"aws-sdk": "^2.1691.0",
"backo": "^1.1.0",
"base-x": "3.0.8",
"base62": "^2.0.2",
"debug": "^4.3.7",
"fcntl": "github:scality/node-fcntl#0.3.0",
"httpagent": "scality/httpagent#1.1.0",
"https-proxy-agent": "^7.0.6",
"ioredis": "^5.6.1",
"ipaddr.js": "^2.2.0",
"joi": "^17.13.3",
"level": "~5.0.1",
"level-sublevel": "~6.6.5",
"mongodb": "^6.15.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.26.9",
"@babel/preset-typescript": "^7.25.7",
"@eslint/compat": "^1.2.0",
"@eslint/plugin-kit": "^0.2.7",
"@scality/eslint-config-scality": "scality/Guidelines#8.3.0",
"@sinonjs/fake-timers": "^14.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.25.1",
"eslint-plugin-react": "^7.37.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"temp": "^0.9.4",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.31.0"
},
"scripts": {
"lint": "eslint $(git ls-files '*ts' ' *.js')",
"lint_md": "mdlint $(git ls-files '*.md')",
"lint_yml": "yamllint $(git ls-files '*.yml')",
"test": "export NODE_OPTIONS=\"--tls-max-v1.2\" && jest tests/unit --detectOpenHandles",
"build": "tsc",
"prepare": "yarn build",
"ft_test": "jest tests/functional --testTimeout=120000 --forceExit",
"coverage": "export NODE_OPTIONS=\"--tls-max-v1.2\" && nyc --clean jest tests --coverage --testTimeout=120000 --forceExit",
"build_doc": "cd documentation/listingAlgos/pics; dot -Tsvg delimiterStateChart.dot > delimiterStateChart.svg; dot -Tsvg delimiterMasterV0StateChart.dot > delimiterMasterV0StateChart.svg; dot -Tsvg delimiterVersionsStateChart.dot > delimiterVersionsStateChart.svg"
},
"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
}
}
}
},
"nyc": {
"tempDirectory": "coverage",
"reporter": [
"lcov",
"text"
]
}
}