-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 Bytes
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
{
"name": "passport-local-multifield",
"version": "0.1.1",
"description": "Local multi-field authentication strategy for passport.js",
"main": "./lib",
"author": {
"name": "Mark Tsai"
},
"repository": {
"type": "git",
"url": "git://github.com/mxgit1090/passport-local-multifield.git"
},
"bugs": {
"url": "https://github.com/mxgit1090/passport-local-multifield/issues"
},
"license": "MIT",
"private": false,
"devDependencies": {
"chai": "^4.2.0",
"chai-passport-strategy": "^1.0.1",
"mocha": "^5.2.0"
},
"dependencies": {
"passport-strategy": "^1.0.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}