-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 975 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
38
39
{
"scripts": {
"test": "nyc --reporter=text mocha --inspect --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"main": "js/index.js",
"license": "MIT",
"name": "@pubcore/knex-auth",
"version": "1.0.11",
"description": "Functions to persist authentication state to a RDMS via knex",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pubcore/knex-auth.git"
},
"directories": {
"test": "test"
},
"keywords": [
"basic authentication"
],
"author": "pubcore",
"devDependencies": {
"@pubcore/knex-create-test-db": "^1.1.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-datetime": "^1.7.0",
"eslint": "^6.8.0",
"eslint-plugin-mocha": "^6.3.0",
"mocha": "^7.2.0",
"moment-timezone": "^0.5.32",
"nyc": "^15.1.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"jshashes": "^1.0.8",
"knex": "^0.21.15",
"prop-types": "^15.7.2"
}
}