UNPKG

1.03 kBJSONView Raw
1{
2 "name": "passport-local",
3 "version": "1.0.0",
4 "description": "Local username and password authentication strategy for Passport.",
5 "keywords": [
6 "passport",
7 "local",
8 "auth",
9 "authn",
10 "authentication",
11 "username",
12 "password"
13 ],
14 "author": {
15 "name": "Jared Hanson",
16 "email": "jaredhanson@gmail.com",
17 "url": "http://www.jaredhanson.net/"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git://github.com/jaredhanson/passport-local.git"
22 },
23 "bugs": {
24 "url": "http://github.com/jaredhanson/passport-local/issues"
25 },
26 "licenses": [
27 {
28 "type": "MIT",
29 "url": "http://www.opensource.org/licenses/MIT"
30 }
31 ],
32 "main": "./lib",
33 "dependencies": {
34 "passport-strategy": "1.x.x"
35 },
36 "devDependencies": {
37 "mocha": "1.x.x",
38 "chai": "1.x.x",
39 "chai-passport-strategy": "0.1.x"
40 },
41 "engines": {
42 "node": ">= 0.4.0"
43 },
44 "scripts": {
45 "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
46 }
47}