-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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
{
"scripts": {
"test": "nyc --reporter=text mocha --inspect --recursive",
"coverage": "nyc report --reporter=text-lcov"
},
"main": "js/index.js",
"license": "MIT",
"name": "@pubcore/express-basic-auth",
"version": "1.1.9",
"description": "express middleware to perform http basic authentication",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pubcore/express-basic-auth.git"
},
"directories": {
"test": "test"
},
"keywords": [
"basic-auth",
"authentication",
"express middleware",
"login"
],
"author": "pubcore",
"dependencies": {
"@pubcore/authentication": "^1.2.4",
"@pubcore/knex-auth": "^1.0.11",
"basic-auth": "^2.0.1",
"cookie": "^0.3.1"
},
"devDependencies": {
"@pubcore/knex-create-test-db": "^1.1.12",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-plugin-mocha": "^5.3.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.2.0",
"moment": "^2.29.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"sqlite3": "^4.2.0"
}
}