-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "@qarnot/sdk",
"version": "1.14.7",
"description": "SDK for Qarnot REST API",
"public": true,
"authors": [
"Qarnot Computing <[email protected]> (https://computing.qarnot.com)"
],
"homepage": "https://computing.qarnot.com",
"repository": {
"type": "git",
"url": "https://github.com/qarnot/qarnot-sdk-nodejs"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"doc": "jsdoc lib/** -d doc -R README.md -t ./node_modules/docdash",
"lint": "eslint --fix . && prettier --write './**/*.js'",
"test": "mocha -t 10000",
"coverage": "nyc --reporter=lcov npm run test"
},
"license": "Apache-2.0",
"main": "index.js",
"files": [
"/lib",
"index.js"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.360.0",
"@aws-sdk/lib-storage": "^3.360.0",
"axios": "^1.6.1",
"url-join": "^4.0.1"
},
"overrides": {
"semver": "^7.5.3"
},
"devDependencies": {
"chai": "^4.3.4",
"docdash": "^2.0.1",
"eslint": "^8.5.0",
"jsdoc": "^4.0.2",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^1.19.1"
}
}