-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 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
{
"name": "vaultclient",
"engines": {
"node": ">=16"
},
"version": "8.3.21",
"description": "Client library and binary for Vault, the user directory and key management service",
"main": "index.js",
"repository": "scality/vaultclient",
"author": "Giorgio Regni",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/vaultclient/issues"
},
"homepage": "https://github.com/scality/vaultclient#readme",
"dependencies": {
"@aws-crypto/sha256-universal": "^2.0.1",
"@smithy/signature-v4": "^2.1.1",
"commander": "2.20.0",
"httpagent": "git+https://github.com/scality/httpagent#1.0.6",
"werelogs": "scality/werelogs#8.1.3",
"xml2js": "0.4.19"
},
"devDependencies": {
"arsenal": "git+https://github.com/scality/Arsenal#8.1.91",
"babel-eslint": "10.0.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-scality": "scality/Guidelines#8.2.0",
"eslint-plugin-import": "^2.18.0",
"mocha": "6.1.4",
"typescript": "^4.7.3"
},
"scripts": {
"start": "node client.js",
"lint": "eslint $(git ls-files '*.js')",
"lint_yml": "yamllint $(git ls-files '*.yml')",
"lint_md": "mdlint $(git ls-files '*.md')",
"test": "mocha --exit tests/unit",
"gen-types": "rm -f lib/IAMClient.d.ts && rm -f lib/constants.d.ts && tsc --declaration --emitDeclarationOnly"
}
}