-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 883 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
{
"name": "dbox-pwd",
"version": "2.0.1",
"description": "Dropbox-like password hasher",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watchAll",
"transpile": "babel -d lib/ index.js impl/hasher.js impl/scrambler.js impl/validators.js --presets=es2015",
"prepublish": "npm run transpile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomdol/dbox-pwd.git"
},
"keywords": [
"password",
"hash",
"encryption",
"authentication",
"bcrypt",
"dropbox",
"aes"
],
"author": "tomdol <[email protected]> (https://github.com/tomdol)",
"license": "MIT",
"homepage": "https://github.com/tomdol/dbox-pwd",
"dependencies": {
"bcrypt": "^3.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^21.2.1"
}
}