forked from jsantell/poet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 914 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": "poet",
"description": "quick and easy blog module, using markdown, jade, whatever",
"version": "1.0.2",
"main": "lib/poet",
"dependencies": {
"marked": "~0.3.2",
"jade": ">= 0.27.1",
"json-front-matter": ">= 0.1.4",
"underscore": "1.4.x",
"front-matter": ">= 0.1.x",
"when": "2.1.x",
"fs-then": "0.1.x"
},
"devDependencies": {
"mocha": ">= 1.3.2",
"chai": ">= 1.1.1",
"supertest": ">= 0.0.1",
"express": ">=3.2.4 <4.0.0"
},
"repository": {
"type": "git",
"url": "http://github.com/jsantell/poet"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --ui bdd"
},
"keywords": [
"blog",
"blogging",
"markdown",
"jade",
"posts",
"writing"
],
"author": {
"name": "Jordan Santell",
"url": "http://github.com/jsantell"
},
"license": "MIT",
"engines": ["node >= 0.10.2"]
}