crypto-helper/package.json
Timo Hocker fe1ab3bf64
All checks were successful
continuous-integration/drone/push Build is passing
add progress callback
2023-04-07 16:55:52 +02:00

51 lines
1.2 KiB
JSON

{
"name": "@sapphirecode/crypto-helper",
"version": "2.1.2",
"main": "index.js",
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/crypto-helper",
"license": "MIT",
"keywords": [
"cryptography",
"crypto",
"hashing"
],
"repository": {
"type": "git",
"url": "https://git.scode.ovh:timo/crypto-helper.git"
},
"description": "simple functions for cryptography",
"devDependencies": {
"@sapphirecode/eslint-config": "^2.1.4",
"@stryker-mutator/core": "^6.1.2",
"@stryker-mutator/jasmine-runner": "^6.1.2",
"@types/jasmine": "^4.0.3",
"eslint": "^8.21.0",
"jasmine": "^4.3.0",
"nyc": "^15.0.1"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "nyc jasmine --config=\"jasmine.json\"",
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly --lib es6 index.js"
},
"dependencies": {
"@sapphirecode/encoding-helper": "^1.1.0",
"scrypt-js": "^3.0.1"
},
"files": [
"LICENSE",
"lib/*.js",
"lib/*.d.ts",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=10.12.0"
}
}