-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 802 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 802 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
30
31
{
"name": "backbone-login",
"keywords": "backbone, backbonejs, authentication",
"description": "Authentication best practices & demo using a Backbone.js Session Model",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/alexanderscott/backbone-login.git"
},
"author": "Alex Ehrnschwender <alexanderscott46@gmail.com> (http://alexehrnschwender.com)",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"bcrypt": "*",
"express": "~3.x.x",
"hbs": "~4.2.0",
"sqlite3": "*",
"underscore": "~1.12.1"
},
"engines": {
"node": ">= 0.10.0"
},
"subdomain": "backbone-login",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/alexanderscott/backbone-login/raw/master/LICENSE"
}
]
}