forked from bsiddiqui/bookshelf-bcrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
51
{
"name": "bookshelf-bcryptjs",
"version": "1.0.3",
"description": "Automatic password hashing for your bookshelf models, with bcryptjs",
"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/7kasper/bookshelf-bcrypt.js.git"
},
"keywords": [
"bookshelf",
"knex",
"db",
"bcryptjs",
"crypto",
"cryptography",
"password",
"hash",
"hashing",
"protection",
"bycrypt"
],
"author": "Estate <team@tryestate.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/7kasper/bookshelf-bcrypt.js/issues"
},
"homepage": "https://github.com/7kasper/bookshelf-bcrypt.js#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"lodash.get": "^4.3.0",
"lodash.merge": "^4.4.0",
"sqlite3": "^4.0.8"
},
"devDependencies": {
"bookshelf": "^0.13.3",
"co": "^4.6.0",
"code": "^2.2.0",
"knex": "^0.15.2",
"lab": "^14.3.1",
"standard": "^7.0.1"
}
}