50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "@sapphirecode/crypto-helper",
|
|
"version": "2.0.0",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"lib/*.js",
|
|
"lib/*.d.ts",
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.12.0"
|
|
}
|
|
}
|