password-helper/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2020-03-04 12:20:42 +01:00
{
2020-05-05 19:23:30 +02:00
"name": "@sapphirecode/password-helper",
2021-01-15 20:02:36 +01:00
"version": "1.0.51",
2020-03-04 12:20:42 +01:00
"main": "index.js",
2020-07-19 14:12:15 +02:00
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/password-helper",
2020-03-04 12:20:42 +01:00
"license": "MIT",
2020-05-17 17:23:22 +02:00
"description": "easy password storage with argon2",
"repository": {
"type": "git",
2020-07-19 14:12:15 +02:00
"url": "https://git.scode.ovh:timo/password-helper.git"
2020-05-17 17:23:22 +02:00
},
2020-03-04 12:20:42 +01:00
"devDependencies": {
2020-05-17 17:23:22 +02:00
"@sapphirecode/encoding-helper": "^1.0.38",
"@sapphirecode/eslint-config": "^2.1.4",
2020-10-12 17:50:42 +02:00
"@stryker-mutator/core": "^4.0.0",
"@stryker-mutator/jasmine-runner": "^4.0.0",
2020-10-05 20:24:47 +02:00
"@types/jasmine": "^3.5.14",
2020-10-05 20:26:12 +02:00
"@types/node": "^14.11.2",
2020-05-17 17:23:22 +02:00
"eslint": "^7.0.0",
2020-10-05 20:24:47 +02:00
"jasmine": "^3.6.1",
2020-05-17 17:23:22 +02:00
"nyc": "^15.0.1"
2020-03-04 12:20:42 +01:00
},
"scripts": {
2020-04-14 14:58:07 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-10-05 20:24:47 +02:00
"test": "nyc jasmine --config=\"jasmine.json\"",
2020-05-04 21:37:02 +02:00
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
2020-05-17 17:23:22 +02:00
},
2020-03-04 12:20:42 +01:00
"dependencies": {
2020-08-14 08:28:37 +02:00
"argon2": "^0.27.0"
2020-03-27 09:15:32 +01:00
},
"engines": {
"node": ">=10.0.0"
2020-05-03 17:01:16 +02:00
},
"files": [
"LICENSE",
2021-01-15 20:02:36 +01:00
"*.js",
"*.d.ts"
2020-07-19 14:12:15 +02:00
],
"keywords": [
"argon2",
"hashing"
2020-05-03 17:01:16 +02:00
]
2021-01-15 20:02:36 +01:00
}