UNPKG

cs2-encryption

Version:

NodeJS Typescript implementation of cybersource v2 encryption

67 lines (66 loc) 1.54 kB
{ "name": "cs2-encryption", "version": "1.0.4", "author": { "name": "Matthew Wall", "email": "matthew.wallt@gmail.com", "url": "https://twitter.com/Mattwall7" }, "description": "NodeJS Typescript implementation of cybersource v2 encryption", "license": "MIT", "main": "lib/index.js", "typings": "lib/index", "files": ["/lib"], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/walmat/cs-encryption-v2.git" }, "bugs": { "url": "https://github.com/walmat/cs-encryption-v2/issues" }, "scripts": { "test": "jest", "test:cover": "jest --collectCoverage", "test:watch": "jest --watchAll", "prepublish": "yarn build", "build": "tsc", "docs": "typedoc src" }, "keywords": [ "typescript", "cybersource", "encryption", "pokemon" ], "dependencies": { "@peculiar/webcrypto": "^1.1.3", "btoa": "^1.2.1", "jwt-decode": "^3.1.1" }, "devDependencies": { "@types/btoa": "^1.2.3", "@types/jest": "^26.0.20", "@types/node": "^14.14.6", "coveralls": "^3.1.0", "dot-json": "^1.2.1", "jest": "^26.6.3", "rimraf": "^3.0.2", "ts-jest": "^26.4.3", "ts-node": "9.0.0", "ts-node-dev": "1.0.0", "tslint": "^6.1.3", "typedoc": "0.19.2", "typedoc-plugin-external-module-name": "4.0.3", "typescript": "^4.0.5" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "testMatch": [ "**/tests/**/*.test.ts" ] } }