2020-03-04 12:18:11 +01:00
|
|
|
{
|
2020-05-05 19:22:13 +02:00
|
|
|
"name": "@sapphirecode/crypto-helper",
|
2022-08-08 13:07:06 +02:00
|
|
|
"version": "2.0.0",
|
2020-03-04 12:18:11 +01:00
|
|
|
"main": "index.js",
|
2020-07-19 14:19:54 +02:00
|
|
|
"author": {
|
|
|
|
"name": "Timo Hocker",
|
|
|
|
"email": "timo@scode.ovh"
|
|
|
|
},
|
|
|
|
"bugs": "https://redmine.scode.ovh/projects/crypto-helper",
|
2020-03-04 12:18:11 +01:00
|
|
|
"license": "MIT",
|
2020-05-15 16:28:17 +02:00
|
|
|
"keywords": [
|
2020-07-19 14:19:54 +02:00
|
|
|
"cryptography",
|
|
|
|
"crypto",
|
|
|
|
"hashing"
|
2020-05-15 16:28:17 +02:00
|
|
|
],
|
2020-05-15 16:30:28 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-07-19 14:19:54 +02:00
|
|
|
"url": "https://git.scode.ovh:timo/crypto-helper.git"
|
2020-05-15 16:30:28 +02:00
|
|
|
},
|
2020-05-15 16:28:17 +02:00
|
|
|
"description": "simple functions for cryptography",
|
2020-03-04 12:18:11 +01:00
|
|
|
"devDependencies": {
|
2020-05-15 16:28:17 +02:00
|
|
|
"@sapphirecode/eslint-config": "^2.1.4",
|
2021-05-24 14:59:58 +02:00
|
|
|
"@stryker-mutator/core": "^5.0.0",
|
|
|
|
"@stryker-mutator/jasmine-runner": "^5.0.0",
|
2020-10-04 12:18:39 +02:00
|
|
|
"@types/jasmine": "^3.5.14",
|
2020-05-15 16:28:17 +02:00
|
|
|
"eslint": "^7.0.0",
|
2020-10-04 12:18:39 +02:00
|
|
|
"jasmine": "^3.6.1",
|
2020-05-15 16:28:17 +02:00
|
|
|
"nyc": "^15.0.1"
|
2020-03-04 12:18:11 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-04-14 14:57:47 +02:00
|
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
|
2020-10-04 12:18:39 +02:00
|
|
|
"test": "nyc jasmine --config=\"jasmine.json\"",
|
2020-05-04 20:38:51 +02:00
|
|
|
"mutate": "stryker run",
|
|
|
|
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
|
2020-03-04 13:28:48 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-12-30 17:16:29 +01:00
|
|
|
"@sapphirecode/encoding-helper": "^1.1.0"
|
2020-05-03 17:00:34 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"LICENSE",
|
2021-01-06 15:13:04 +01:00
|
|
|
"lib/*.js",
|
|
|
|
"lib/*.d.ts",
|
2020-10-11 12:09:45 +02:00
|
|
|
"index.js",
|
|
|
|
"index.d.ts"
|
2020-12-13 13:09:34 +01:00
|
|
|
],
|
|
|
|
"engines": {
|
2021-01-06 15:13:04 +01:00
|
|
|
"node": ">=10.12.0"
|
2020-12-13 13:09:34 +01:00
|
|
|
}
|
2020-10-04 12:18:39 +02:00
|
|
|
}
|