-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 844 Bytes
/
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
{
"name": "bitter",
"preferGlobal": true,
"version": "0.3.7",
"author": "Nao Iizuka <iizuka@kyu-mu.net>",
"description": "Minimal blog engine for Git and Markdown enthusiasts",
"bin": {
"bitter": "bin/bitter"
},
"scripts": {
"build": "coffee -c server.coffee",
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/iizukanao/bitter.git"
},
"keywords": [
"blog",
"engine",
"server",
"git",
"markdown"
],
"dependencies": {
"compression": "^1.7.4",
"ejs": "3.1.x",
"express": "4.x",
"marked": "^4.0.18",
"response-time": "^2.3.2"
},
"devDependencies": {
"coffee-script": "1.12.x",
"feedparser": "2.2.x",
"mocha": "8.1.x",
"request": "2.88.x"
},
"license": "MIT",
"engines": {
"node": ">=10.12.0"
}
}