-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 872 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
32
33
34
35
{
"name": "librecms-api",
"version": "0.0.2",
"description": "HTTP API for LibreCMS project",
"repository": {
"type": "git",
"url": "https://github.com/librecms/librecms-api.git"
},
"license": "https://raw.github.com/librecms/librecms-api/master/LICENSE",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node api.js",
"dev": "grunt nodemon"
},
"main": "api.js",
"dependencies": {
"express": "~3.3.4",
"mongoose": "~3.6.14",
"bcrypt-nodejs": "0.0.3",
"connect": "~2.11.0",
"express-validator": "~0.8.0",
"passport-local": "~0.1.6",
"passport": "~0.1.17",
"fileupload": "~0.2.4",
"session-mongoose": "~0.3.2"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-nodemon": "~0.1.1"
},
"subdomain": "librecms-api",
"engines": {
"node": "0.10.x"
}
}