UNPKG

@constantiner/cram-md5-digest

Version:
83 lines (82 loc) 2.72 kB
{ "name": "@constantiner/cram-md5-digest", "version": "0.9.8", "description": "CRAM-MD5 digester implementation in JavaScript", "keywords": [ "md5", "cryptography", "JavaScript", "ESNext", "ES6", "EcmaScript 2015", "CRAM-MD5" ], "dependencies": {}, "devDependencies": { "@babel/core": "^7.9.6", "@babel/preset-env": "^7.9.6", "@constantiner/resolve-node-configs-hierarchy": "^0.4.6", "@rollup/plugin-typescript": "^4.1.1", "@types/jest": "^25.2.1", "@typescript-eslint/eslint-plugin": "^2.31.0", "@typescript-eslint/parser": "^2.31.0", "babel-jest": "^26.0.1", "cpy-cli": "^3.1.1", "date-fns": "^2.13.0", "del": "^5.1.0", "del-cli": "^3.0.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-security": "^1.4.0", "eslint-plugin-unicorn": "^19.0.1", "esm": "^3.2.25", "globby": "^11.0.0", "husky": "^4.2.5", "jest": "^26.0.1", "lint-staged": "^10.2.2", "prettier": "^2.0.5", "rollup": "^2.8.2", "rollup-plugin-prettier": "^2.0.0", "sourcemap-validator": "^2.1.0", "ts-jest": "^25.5.0", "typescript": "^3.8.3" }, "scripts": { "test": "node -r esm scripts/unitTest.js", "test:coverage": "npm test -- --coverage", "test:watch": "node -r esm scripts/unitTestWatch.js", "lint": "npx tsc --noEmit && npx eslint '**/*.{js,ts}'", "build": "npm run clean && npx rollup -c ./rollup.config.js && npx cpy dist/src types && npx del dist/src", "build:ts": "npm run clean && npx tsc --rootDir ./src", "format": "npx prettier --write '{{src,__tests__,scripts}/**/*.js,rollup.config.js,babel.config.js,jest.config.js}'", "prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build", "clean": "node -r esm scripts/clean.js", "clear_jest": "npx jest --clearCache", "lint-staged": "npx lint-staged", "validate:sourcemaps": "node -r esm scripts/sourcemapsValidator.js", "changelog": "node -r esm scripts/generateChangelog.js", "version": "npm run changelog && git add CHANGELOG.md", "postversion": "git push && git push --tags", "version:patch": "npm version patch -m \"Upgrade to %s\"", "version:minor": "npm version minor -m \"Upgrade to %s\"", "version:major": "npm version major -m \"Upgrade to %s\"" }, "homepage": "https://github.com/Constantiner/cram-md5-digest-js.git", "author": { "name": "Konstantin Kovalev", "email": "constantiner@gmail.com" }, "license": "MIT", "repository": { "url": "https://github.com/Constantiner/cram-md5-digest-js.git", "type": "git" }, "main": "dist/cramMd5Digest.js", "types": "types/cramMd5Digest.d.ts", "engines": { "node": ">=8", "npm": ">=5.2.0" } }