UNPKG

@peculiar/webcrypto-test

Version:
74 lines 2.08 kB
{ "name": "@peculiar/webcrypto-test", "version": "2.0.0", "description": "Vitest and Mocha tests of WebCrypto API", "main": "build/index.js", "module": "build/index.mjs", "types": "build/types/index.d.ts", "scripts": { "test": "vitest run", "clear": "rimraf build", "build": "npm run build:module && npm run build:types", "build:module": "rollup -c", "build:types": "tsc -p tsconfig.types.json", "rebuild": "npm run clear && npm run build", "coverage": "vitest run --coverage", "lint": "eslint .", "lint:fix": "eslint --fix .", "prepub": "npm run lint && npm test && npm run rebuild", "pub": "npm version patch && npm publish --access public", "postpub": "git push && git push --tags origin master", "prepub:next": "npm run prepub", "pub:next": "npm version prerelease --preid=next && npm publish --tag next --access public", "postpub:next": "git push" }, "repository": { "type": "git", "url": "https://github.com/PeculiarVentures/webcrypto-test" }, "keywords": [ "test", "webcrypto", "rsa", "ec", "aes", "des", "pbkdf" ], "files": [ "build/**/*", "README.md", "LICENSE" ], "author": "PeculiarVentures", "contributors": [ "Miroshin Stepan<microshine@mail.ru>", "Miroshin Roman<miroshin.ry@gmail.com>" ], "license": "MIT", "bugs": { "url": "https://github.com/PeculiarVentures/webcrypto-test/issues" }, "homepage": "https://github.com/PeculiarVentures/webcrypto-test#readme", "dependencies": { "pvtsutils": "^1.3.6", "tslib": "^2.8.1" }, "devDependencies": { "@peculiar/webcrypto": "^1.5.0", "@peculiar/eslint-config-base": "^0.2.9", "@types/node": "^25.6.0", "@typescript-eslint/parser": "^8.59.1", "@rollup/plugin-typescript": "^12.3.0", "@vitest/coverage-v8": "^4.1.5", "eslint": "^10.2.1", "typescript-eslint": "^8.59.1", "vitest": "^4.1.5", "rimraf": "^6.1.3", "rollup": "^4.60.2", "typescript": "^6.0.3" }, "engines": { "node": ">=18" } }