UNPKG

scorechain-sdk

Version:

SDK for the Scorechain API

68 lines (67 loc) 2.67 kB
{ "name": "scorechain-sdk", "version": "1.0.3", "description": "SDK for the Scorechain API", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "prepare": "./node_modules/.bin/husky install", "lint": "./node_modules/.bin/eslint --config .eslintrc.json .", "lint:fix": "./node_modules/.bin/eslint --config .eslintrc.json --fix .", "format": "./node_modules/.bin/prettier --config .prettierrc --ignore-path .prettierignore -c .", "format:fix": "./node_modules/.bin/prettier --config .prettierrc --ignore-path .prettierignore --write .", "check": "./node_modules/.bin/tsc -p tsconfig.json --noEmit", "test": "./node_modules/.bin/jest -c jest.config.js --selectProjects unit integration e2e", "test:unit": "./node_modules/.bin/jest -c jest.config.js --selectProjects unit", "test:integration": "./node_modules/.bin/jest -c jest.config.js --selectProjects integration", "test:e2e": "./node_modules/.bin/jest -c jest.config.js --selectProjects e2e", "cleanup": "rm -rf ./dist && mkdir ./dist", "build": "rm -rf ./dist && ./node_modules/.bin/tsc -p ./tsconfig.json", "install-clean": "rm -rf node_modules && rm -f package-lock.json && npm i" }, "keywords": [ "scorechain", "sdk", "aml", "cryptocurrency", "blockchain", "compliance", "bitcoin", "ethereum" ], "author": "Scorechain", "license": "MIT", "devDependencies": { "@babel/core": "^7.23.0", "@babel/preset-env": "^7.22.20", "@babel/preset-typescript": "^7.23.0", "@types/jest": "^29.5.5", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "babel-jest": "^29.7.0", "babel-plugin-jest-hoist": "29.2.0", "esbuild": "^0.17.19", "eslint": "^8.50.0", "eslint-config-prettier": "^8.10.0", "eslint-plugin-jest": "^27.4.0", "eslint-plugin-prettier": "^5.0.0", "husky": "^8.0.3", "jest": "^29.7.0", "lint-staged": "^13.3.0", "typescript": "^4.9.5" }, "dependencies": { "axios": "^1.6.2" }, "engines": { "node": ">=18.0.0" }, "lint-staged": { "*(*.[tj]s?(x)|*.flow|*.json|*.?(s)css|*.less|*.html|*.vue|*.handlebars|*.md|*.yml)": [ "./node_modules/.bin/prettier --config .prettierrc --ignore-path .prettierignore --write" ], "src/**/*.[tj]s?(x)": [ "./node_modules/.bin/eslint --config .eslintrc.json --max-warnings 0 --fix" ] } }