-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.86 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
{
"name": "@scality/hdclient",
"engines": {
"node": ">=20"
},
"version": "1.3.0-dev",
"description": "Hyperdrive appliance client library",
"main": "index.js",
"scripts": {
"clinic": "clinic ",
"build": "tsc --strict ",
"coverage": "nyc --check-coverage --exclude 'tests/*' --lines=90 --reporter=text --reporter=html --reporter=lcov npm test tests/",
"jsdoc": "jsdoc src/ tests/ -d docs/jsdoc",
"lint": "eslint $(git ls-files '*.ts' '*.js')",
"test": "mocha --require ts-node/register --use_strict --check-leaks --recursive tests/**/*.ts",
"get-version": "echo $npm_package_version"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": "git://github.com/scality/hdclient.git ",
"author": "Maxime Lubin",
"dependencies": {
"httpagent": "github:scality/httpagent#1.1.0",
"werelogs": "github:scality/werelogs#8.2.2"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@types/async": "^3.2.24",
"@types/mocha": "^10.0.8",
"@types/nock": "^11.1.0",
"@types/node": "^22.7.3",
"@types/sinon": "^17.0.3",
"clinic": "^13.0.0",
"eslint": "^9.11.1",
"eslint-config-scality": "github:scality/Guidelines#8.3.0",
"globals": "^15.11.0",
"jsdoc": "^4.0.3",
"mocha": "^11.0.1",
"nock": "^13.5.5",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.4.0"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/hdclient/issues"
},
"homepage": "https://github.com/scality/hdclient#readme",
"publishConfig": {
"access": "public"
}
}