-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.35 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bookshelf-bcrypt",
"version": "4.1.0",
"description": "Automatic password hashing for your bookshelf models",
"main": "index.js",
"scripts": {
"test": "standard && lab --verbose --colors --assert code --ignore __core-js_shared__",
"test-cov": "npm test -- -r console -o stdout -r html -o coverage/coverage.html -r lcov -o coverage/lcov.info",
"reset": "node -e 'require(\"./test/db\").reset().then(process.exit)'",
"knex": "knex --knexfile test/db/knexfile.js",
"migrate": "npm run knex -- migrate:latest",
"seed": "npm run knex -- seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/estate/bookshelf-bcrypt.git"
},
"keywords": [
"bookshelf",
"knex",
"db",
"bcrypt",
"crypto",
"cryptography",
"password",
"hash",
"hashing",
"protection"
],
"author": "Estate <team@tryestate.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/estate/bookshelf-bcrypt/issues"
},
"homepage": "https://github.com/estate/bookshelf-bcrypt#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@hapi/lab": "^24.3.2",
"bookshelf": "^1.2.0",
"co": "^4.6.0",
"code": "^2.2.0",
"knex": "^0.21.19",
"sqlite3": "^5.0.2",
"standard": "^16.0.3"
}
}