-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "bloggy",
"description": "Small and lightweight extensible blog engine.",
"version": "0.0.23",
"author": "Marcell Spies <[email protected]>",
"contributors": [
{
"name": "Marcell Spies",
"email": "[email protected]"
}
],
"dependencies": {
"glob": "8.0.3",
"linq": "3.2.4",
"slug": "8.0.0"
},
"devDependencies": {
"bloggy-query": "0.0.2",
"bloggy-marked": "0.0.5",
"express": "4.18.1",
"grunt": "1.5.3",
"grunt-cli": "1.4.3",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "24.0.0",
"grunt-mocha-test": "0.13.3",
"mocha": "10.0.0",
"proxyquire": "2.1.3",
"pug": "3.0.2",
"should": "13.2.3"
},
"keywords": [
"blog",
"markdown",
"engine",
"small",
"lightweight",
"extensible"
],
"repository": "git://github.com/marcells/bloggy",
"scripts": {
"test": "grunt test",
"ci": "grunt ci"
},
"engines": {
"node": ">= 0.8.0"
},
"license": "MIT",
"config": {
"travis-cov": {
"threshold": 70
}
}
}