UNPKG

@signiant/media-shuttle-sdk

Version:

The SDK for supporting file transfer to and from Media Shuttle

111 lines (110 loc) 4.1 kB
{ "name": "@signiant/media-shuttle-sdk", "version": "1.3.0", "description": "The SDK for supporting file transfer to and from Media Shuttle", "engines": { "node": ">=16" }, "main": "dist/esm/src/index.js", "types": "dist/esm/src/index.d.ts", "module": "dist/esm/src/index.js", "scripts": { "cleanDist": "rimraf dist", "cleanCoverage": "rimraf coverage", "compile": "tsc -p tsconfig.esm.json", "docs": "typedoc --options typedoc.js src/index.ts && marked -i CHANGELOG.md -o dist/docs/CHANGELOG.html", "copyReactSample": "copyfiles -a \"samples/react-sample/**\" -e \"samples/react-sample/node_modules/**\" dist/docs", "build": "npm run compile && npm run docs", "cleanAndCompile": "npm run cleanDist && npm run compile", "cleanAndBuild": "npm run cleanDist && npm run build", "lint": "eslint --ext .js,.ts src --fix", "validate": "npm ls", "test": "npx jest tests/unit/*", "coverage": "npm test -- --coverage", "coverage:dev": "npm run coverage; open-cli coverage/index.html", "test:component": "npx jest --testTimeout=10000 tests/component/* ", "test:component:coverage": "npm run test:component -- --coverage", "prepublishOnly": "npm run build && npm test && npm run test:component", "pub": "npm run build && npm run test && npm publish", "packBase": "cd ../signiant-media-shuttle-sdk-base && rimraf *tgz && npm run cleanAndCompile && npm pack", "installLocalBase": "npm run packBase && thefile=$(ls -d ../signiant-media-shuttle-sdk-base/signiant-media-shuttle-sdk-base*tgz | head -n 1) && npm i \"$thefile\"", "watchDocs": "npm-watch docs", "publish:stage": "publish-main --stage --registry=$INTERNAL_PUBLISH_REGISTRY", "publish:prod": "publish-main --registry=$INTERNAL_PUBLISH_REGISTRY", "version": "node ./scripts/version.js" }, "files": [ "/dist", "README.md", "CHANGELOG.md", "LICENSE" ], "author": "Signiant <signiant-npm@signiant.com>", "license": "Signiant SDK", "homepage": "https://www.signiant.com", "devDependencies": { "@babel/plugin-transform-runtime": "^7.18.10", "@npmcli/package-json": "^2.0.0", "@signiant/eslint-config": "^4.4.0", "@signiant/publish-utils": "2.0.0", "@signiant/websocket-test-utils": "^0.6.0", "@types/chai": "^4.3.1", "@types/jest": "^27.4.0", "@types/js-cookie": "^3.0.2", "@types/lodash": "^4.14.182", "@types/node": "^16.11.25", "@types/proxyquire": "^1.3.28", "@typescript-eslint/eslint-plugin": "^5.3.1", "@typescript-eslint/parser": "^5.3.1", "copyfiles": "^2.4.1", "core-js": "^3.21.1", "eslint": "^8.57.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-import": "^2.25.3", "eslint-plugin-mocha": "^10.0.1", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-react": "^7.27.1", "is-docker": "^3.0.0", "jest": "^27.5.1", "jest-mock-extended": "^2.0.7", "marked": "^4.0.18", "npm-watch": "^0.11.0", "open-cli": "^7.0.1", "precommit-hook": "^3.0.0", "prettier": "^2.7.1", "proxyquire": "^2.1.3", "rimraf": "^3.0.2", "semver": "^7.3.7", "ts-jest": "^27.1.4", "ts-loader": "^5.3.0", "typedoc": "^0.23.10" }, "dependencies": { "fastq": "^1.19.1", "@signiant/media-shuttle-sdk-base": "2.0.3", "typescript": "~4.7.4", "uuid": "^8.3.2" }, "pre-commit": [ "lint", "validate", "test" ], "watch": { "docs": { "patterns": [ "src", "docs", "package.json" ], "extensions": "ts,md,json", "quiet": false } }, "keywords": [ "Signiant", "Media", "Shuttle", "SDK" ] }