forked from zefferus/pasteurize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 923 Bytes
/
package.json
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
{
"name": "pasteurize",
"version": "1.0.0",
"description": "A secure password hashing and verification module",
"main": "src/pasteurize.js",
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"lint": "node_modules/.bin/eslint src",
"test": "node_modules/.bin/tap --cov --reporter=spec test/**/*.test.js",
"precoverage": "node_modules/.bin/rimraf coverage",
"coverage": "node_modules/.bin/tap --coverage-report=lcov"
},
"repository": {
"type": "git",
"url": "git://github.com/zefferus/pasteurize"
},
"keywords": [
"password",
"hashing",
"crypto",
"pbkdf2",
"secure"
],
"author": "Brandon Belvin",
"license": "MIT",
"bugs": {
"url": "https://github.com/zefferus/pasteurize/issues"
},
"homepage": "https://github.com/zefferus/pasteurize#readme",
"devDependencies": {
"eslint": "^2.4.0",
"rimraf": "^2.5.2",
"tap": "^5.7.0"
}
}