-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "express-authentication",
"version": "0.3.2",
"description": "Unopinionated authentication middleware for express.",
"author": "Izaak Schroeder <[email protected]>",
"keywords": [ "authentication", "express" ],
"license": "CC0-1.0",
"homepage": "https://github.com/izaakschroeder/express-authentication",
"repository": {
"type": "git",
"url": "https://github.com/izaakschroeder/express-authentication.git"
},
"main": "lib/authentication.js",
"scripts": {
"test": "npm run lint && npm run spec && npm run coverage",
"spec": "NODE_PATH=lib NODE_ENV=test istanbul cover node_modules/.bin/_mocha -- --sort --recursive -r test/helpers/chai -r test/helpers/sinon -R spec test/spec",
"lint": "eslint --ignore-path .gitignore .",
"coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100"
},
"peerDependencies": {
"express": "^4.10.2"
},
"dependencies": {
"express-context": "^0.7.1",
"lodash": "^3.6.0"
},
"devDependencies": {
"express": "^4.10.2",
"eslint": "*",
"eslint-plugin-nodeca": "*",
"mocha": "*",
"istanbul": "*",
"chai": "*",
"chai-things": "*",
"sinon": "*",
"sinon-chai": "*",
"supertest": "^0.15.0",
"supertest-chai": "^0.0.8"
}
}