2020-03-04 12:18:11 +01:00
|
|
|
{
|
2020-05-05 19:22:13 +02:00
|
|
|
"name": "@sapphirecode/crypto-helper",
|
2020-03-04 12:18:11 +01:00
|
|
|
"version": "1.0.0",
|
|
|
|
"main": "index.js",
|
2020-05-15 16:28:17 +02:00
|
|
|
"author": "Timo Hocker <timo@scode.ovh>",
|
2020-03-04 12:18:11 +01:00
|
|
|
"license": "MIT",
|
2020-05-15 16:28:17 +02:00
|
|
|
"keywords": [
|
|
|
|
"cryptography"
|
|
|
|
],
|
|
|
|
"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",
|
|
|
|
"@stryker-mutator/core": "^3.2.3",
|
|
|
|
"@stryker-mutator/javascript-mutator": "^3.2.3",
|
|
|
|
"ava": "^3.8.2",
|
|
|
|
"eslint": "^7.0.0",
|
|
|
|
"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-03-04 13:04:05 +01:00
|
|
|
"test": "nyc ava",
|
2020-03-30 11:57:22 +02:00
|
|
|
"ci": "yarn && node jenkins.js",
|
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-05-15 16:28:17 +02:00
|
|
|
"@sapphirecode/encoding-helper": "^1.0.38"
|
2020-05-03 17:00:34 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"LICENSE",
|
|
|
|
"index.js"
|
|
|
|
]
|
2020-03-04 13:28:48 +01:00
|
|
|
}
|