-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.82 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "libra",
"version": "1.0.0",
"description": "A markdown file viewer.",
"main": "index.js",
"scripts": {
"start": "gulp build && node index.js",
"dev": "gulp watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dezitter/libra.git"
},
"keywords": [
"markdown",
"backbone",
"rendr",
"dropbox"
],
"author": "Laurent Dezitter <laurent.dezitter@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dezitter/libra/issues"
},
"homepage": "https://github.com/dezitter/libra#readme",
"dependencies": {
"babel": "^5.8.23",
"bcrypt": "^0.8.5",
"body-parser": "^1.14.1",
"connect-mongo": "^0.8.2",
"cookie-parser": "^1.4.0",
"debug": "^2.2.0",
"dropbox": "^0.10.3",
"express": "^4.13.3",
"express-session": "^1.12.1",
"handlebars": "^3.0.0",
"jquery": "^2.1.4",
"mongodb": "^2.0.47",
"mongoose": "^4.2.6",
"morgan": "^1.6.1",
"nconf": "^0.8.2",
"rendr": "^1.1.1",
"rendr-handlebars": "^2.0.1",
"serve-static": "^1.10.0",
"showdown": "^1.3.0",
"superagent": "^1.4.0",
"xss": "^0.2.7"
},
"devDependencies": {
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"del": "^2.0.2",
"glob": "^5.0.15",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-debug": "^2.1.2",
"gulp-declare": "^0.3.0",
"gulp-handlebars": "^4.0.0",
"gulp-nodemon": "^2.0.4",
"gulp-sass": "^2.0.4",
"gulp-util": "^3.0.6",
"gulp-wrap": "^0.11.0",
"map-stream": "0.0.6",
"run-sequence": "^1.1.4",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
},
"babel": {
"optional": [
"es7.decorators"
]
},
"browserify": {
"transform": [
"babelify"
]
}
}