UNPKG

@itwin/object-storage-oss

Version:
89 lines 3.33 kB
{ "name": "@itwin/object-storage-oss", "version": "3.0.2", "description": "Object storage implementation using OSS", "keywords": [ "Bentley", "iTwin", "iTwin platform", "Object storage", "OSS" ], "homepage": "https://github.com/iTwin/object-storage/tree/main/storage/oss", "repository": { "type": "git", "url": "https://github.com/iTwin/object-storage" }, "license": "MIT", "author": { "name": "Bentley Systems, Inc.", "url": "https://www.bentley.com" }, "main": "lib/index.js", "types": "lib/index.d.ts", "prettier": "@itwin/object-storage-common-config/prettier.json", "eslintConfig": { "extends": "./node_modules/@itwin/object-storage-common-config/.eslintrc.js" }, "dependencies": { "@alicloud/pop-core": "^1.7.12", "@aws-sdk/client-s3": "^3.347.1", "@itwin/object-storage-core": "3.0.2", "@itwin/object-storage-s3": "3.0.2" }, "devDependencies": { "@types/chai": "^4.3.8", "@types/chai-as-promised": "^7.1.2", "@types/mocha": "^10.0.1", "@types/node": "^18.11.18", "chai": "^4.3.10", "chai-as-promised": "^7.1.1", "cspell": "^8.16.0", "dotenv": "^16.0.0", "eslint": "^8.57.1", "inversify": "^7.5.2", "mocha": "^10.4.0", "npm-run-all": "^4.1.5", "nyc": "^14.0.0", "reflect-metadata": "^0.2.2", "rimraf": "^2.6.2", "sort-package-json": "^1.53.1", "typescript": "^5.1.3", "wait-on": "^7.2.0", "webpack": "^5.96.1", "webpack-cli": "^5.1.4", "@itwin/cloud-agnostic-core": "3.0.2", "@itwin/object-storage-common-config": "0.0.0", "@itwin/object-storage-tests-backend": "0.0.0", "@itwin/object-storage-tests-backend-unit": "0.0.0", "@itwin/object-storage-tests-frontend": "0.0.0" }, "peerDependencies": { "inversify": "^7.5.2", "reflect-metadata": "^0.2.2" }, "peerDependenciesMeta": { "inversify": { "optional": true }, "reflect-metadata": { "optional": true } }, "scripts": { "build": "tsc 1>&2 && npx webpack", "clean": "rimraf lib && rimraf dist", "lint": "eslint --resolve-plugins-relative-to node_modules/@itwin/object-storage-common-config ./src/**/*.ts 1>&2", "lint-fix": "eslint --fix --resolve-plugins-relative-to node_modules/@itwin/object-storage-common-config ./src/**/*.ts 1>&2 && sort-package-json", "spell-check": "cspell \"**\" --config ./node_modules/@itwin/object-storage-common-config/cspell.json", "test:unit": "npm run test:unit:backend", "test:unit:backend": "mocha lib/test/unit/backend/**/*.test.js --color --exit", "test:unit:frontend": "", "test:integration:backend": "npm run test:integration:backend:common && npm run test:integration:backend:local", "test:integration:backend:local": "mocha lib/test/integration/backend/**/*.test.js --color --exit -t 30000", "test:integration:backend:common": "node lib/test/integration/backend/RunIntegrationTests.js", "test:integration:frontend": "npm-run-all -p -r test:integration:frontend:startServer test:integration:frontend:runTests ", "test:integration:frontend:runTests": "wait-on tcp:1223 -t 30000 && node lib/test/integration/frontend/RunIntegrationTests.js", "test:integration:frontend:startServer": "node lib/test/integration/frontend/StartServer.js" } }