cryptomus-sdk
Version:
This is not an official one created for simplified work with Cryptomus API
65 lines (63 loc) • 1.59 kB
JSON
{
"name": "cryptomus-sdk",
"version": "3.0.0",
"description": "This is not an official one created for simplified work with Cryptomus API",
"author": "Roman Volzhin <volzhin1@gmail.com>",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/lib"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test:e2e": "jest"
},
"license": "MIT",
"homepage": "https://github.com/RomanV1/cryptomus-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/RomanV1/cryptomus-sdk.git"
},
"bugs": {
"url": "https://github.com/RomanV1/cryptomus-sdk/issues"
},
"keywords": [
"cryptomus sdk",
"cryptomus",
"crypto",
"payment",
"sdk",
"node"
],
"dependencies": {
"axios": "^1.4.0",
"uuid": "^9.0.0",
"short-uuid": "^4.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}