-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.44 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
{
"name": "node-blogger",
"version": "0.1.6",
"description": "Raging Flame Blog",
"main": "server.js",
"scripts": {
"test": "jshint && mocha test",
"jshint": "jshint posts.js rss.js server.js routes.js ./lib/post.js ./lib/bin.compile-index.js ./lib/bin.compile-posts.js ./lib/bin.newpost.js",
"compile": "node bin/compile",
"setupblog": "node bin/setupblog",
"newpost": "node bin/newpost"
},
"bin": {
"newpost": "bin/newpost",
"compile": "bin/compile",
"setupblog": "bin/setupblog"
},
"repository": {
"type": "git",
"url": "https://github.com/qawemlilo/blog.git"
},
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"keywords": [
"Node",
"blogging engine",
"blogging platform",
"static sites",
"markdown blog"
],
"author": "Qawelesizwe Mlilo",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"connect": "~3.6.2",
"connect-route": "^0.1.5",
"ejs": "^2.3.4",
"lodash": "^4.17.4",
"rss": "^1.2.1",
"st": "~1.2.0",
"xml": "^1.0.0"
},
"devDependencies": {
"clean-css": "^4.1.3",
"del": "^2.2.2",
"ejs": "~2.5.6",
"jshint": "*",
"markdown": "~0.5.0",
"mocha": "*",
"rss": "~1.2.2",
"should": "~11.2.1",
"slug": "^0.9.1",
"uglify-js": "^3.0.13",
"xml": "~1.0.1"
},
"engines": {
"node": "0.14.x",
"npm": "2.14.x"
}
}