-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "br",
"subdomain": "backrest",
"version": "0.1.5",
"author": "Michael England <[email protected]>",
"description": "The noBackend RESTful API.",
"cacheDirectories": [
"node_modules",
"public/components"
],
"engines": {
"node": "6.6.0"
},
"scripts": {
"start": "node br.js",
"postinstall": "npm install bower -g; bower install",
"test": "mocha"
},
"bin": {
"br": "./br.js"
},
"repository": {
"type": "git",
"url": "http://github.com/8BitFactory/backrest.git"
},
"contributors": [
{
"name": "Michael England",
"email": "[email protected]"
}
],
"dependencies": {
"async": "^2.1.4",
"bcrypt": "^0.8.7",
"body-parser": "~1.14.1",
"bower": "^1.8.0",
"clone": "^2.0.0",
"connect-mongo": "^1.3.2",
"cookie-parser": "~1.4.0",
"ejs": "^2.5.5",
"emailjs": "^1.0.8",
"express": "^4.14.0",
"express-livereload": "0.0.24",
"express-session": "^1.14.1",
"jsonfile": "^2.4.0",
"lodash": "^4.17.2",
"moment": "2.4.0",
"mongoify": "^1.1.0",
"mongojs": "^2.4.0",
"morgan": "^1.7.0",
"npm": "^4.0.5",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
},
"devDependencies": {
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-standard": "^2.0.1",
"expect.js": "^0.3.1",
"mocha": "^3.1.2",
"superagent": "^2.3.0"
}
}