-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 922 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
{
"name": "express-basicauth",
"version": "1.0.2",
"description": "A simple express middleware for basic authentication",
"main": "lib/index.js",
"scripts": {
"test": "npm run compile && tape index.spec.js | faucet",
"compile": "babel index.js -d lib",
"prepublish": "npm run compile"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mariusespejo/express-basicauth.git"
},
"author": "Marius Espejo",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariusespejo/express-basicauth/issues"
},
"homepage": "https://github.com/mariusespejo/express-basicauth#readme",
"dependencies": {
"basic-auth": "^1.1.0",
"regenerator-runtime": "^0.10.3"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.3.2",
"faucet": "0.0.1",
"pre-commit": "^1.2.2",
"tape": "^4.6.3"
}
}