This repository was archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@slynova/hash",
"version": "0.1.0",
"description": "Flexible and Fluent framework-agnostic driver based system for password hashing algorithms.",
"main": "./build/index.js",
"author": "Romain Lanz <romain.lanz@slynova.ch>",
"license": "MIT",
"files": [
"build"
],
"scripts": {
"build": "npm run clean && npm run tsc",
"clean": "rimraf build",
"prepublishOnly": "npm run build",
"test": "node japaFile",
"tsc": "tsc"
},
"dependencies": {
"argon2": "^0.24.0",
"bcrypt": "^3.0.6",
"node-exceptions": "^4.0.1"
},
"devDependencies": {
"@types/argon2": "^0.15.0",
"@types/bcrypt": "^3.0.0",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"japa": "^2.0.10",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"repository": "git@github.com:Slynova-Org/hash.git",
"bugs": {
"url": "https://github.com/Slynova-Org/hash/issues"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120
}
}